Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,88 @@
using System;
using System.Collections.Generic;
using System.Linq;
namespace Server.Items
{
public class KeypunchReader : OrnateWoodenChest
{
public override int LabelNumber { get { return 1153868; } } // Keypunch Reader
[Constructable]
public KeypunchReader()
: base()
{
this.Weight = 0.0;
this.Hue = 2500;
this.Movable = false;
}
public KeypunchReader(Serial serial) : base(serial)
{
}
public override bool OnDragDrop(Mobile from, Item dropped)
{
if (!base.OnDragDrop(from, dropped))
return false;
if (this.TotalItems >= 50)
{
CheckItems(from);
}
if (dropped is PunchCard)
{
from.SendLocalizedMessage(1152375); // You feed the punch card into the machine but nothing happens.
}
return true;
}
public override bool OnDragDropInto(Mobile from, Item item, Point3D p)
{
if (!base.OnDragDropInto(from, item, p))
return false;
if (this.TotalItems >= 50)
{
CheckItems(from);
}
if (item is PunchCard)
{
from.SendLocalizedMessage(1152375); // You feed the punch card into the machine but nothing happens.
}
return true;
}
public void CheckItems(Mobile m)
{
List<Item> items = this.Items;
var punch = items.Where(x => x is PunchCard);
var kit = items.Where(x => x is ExoticToolkit);
if (punch.Count() >= 50 && kit.Count() >= 1)
{
punch.ToList().ForEach(f => f.Delete());
this.DropItem(new NexusAddonDeed());
m.SendLocalizedMessage(1152376); // As you feed the punch card into the machine it turns on!
}
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}