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,157 @@
using Server.Multis;
using Server.Targeting;
using System;
namespace Server.Items
{
public class BirdLamp : BaseLight, IFlipable, IAddon
{
public override int LabelNumber { get { return 1154188; } } // Bird Lamp
public override int LitItemID { get { return ItemID == 0x4C44 ? 0x4C45 : 0x4C47; } }
public override int UnlitItemID { get { return ItemID == 0x4C45 ? 0x4C44 : 0x4C46; } }
public int NorthID { get { return Burning ? 0x4C45 : 0x4C44; } }
public int WestID { get { return Burning ? 0x4C47 : 0x4C46; } }
[Constructable]
public BirdLamp()
: base(0x4C44)
{
Movable = false;
Duration = TimeSpan.Zero;
Burning = false;
Light = LightType.Circle300;
Weight = 0.0;
}
public Item Deed { get { return new BirdLampDeed(); } }
public bool CouldFit(IPoint3D p, Map map)
{
return map.CanFit((Point3D)p, 20);
}
void IChopable.OnChop(Mobile from)
{
var house = BaseHouse.FindHouseAt(this);
if (house != null && (house.IsOwner(from) || (house.Addons.ContainsKey(this) && house.Addons[this] == from)))
{
Effects.PlaySound(GetWorldLocation(), Map, 0x3B3);
from.SendLocalizedMessage(500461); // You destroy the item.
Delete();
house.Addons.Remove(this);
from.AddToBackpack(Deed);
}
else
{
from.SendLocalizedMessage(1113134); // You can only redeed items in your own house!
}
}
public void OnFlip(Mobile from)
{
if (ItemID == NorthID)
ItemID = WestID;
else if (ItemID == WestID)
ItemID = NorthID;
}
public BirdLamp(Serial serial)
: base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
public class BirdLampDeed : Item
{
public override int LabelNumber { get { return 1154188; } } // Bird Lamp
[Constructable]
public BirdLampDeed()
: base(0x14F0)
{
LootType = LootType.Blessed;
}
public BirdLampDeed(Serial serial)
: base(serial)
{
}
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();
}
public override void OnDoubleClick(Mobile from)
{
BaseHouse house = BaseHouse.FindHouseAt(from);
if (house != null && house.IsCoOwner(from))
{
from.BeginTarget(-1, true, TargetFlags.None, new TargetStateCallback(Placement_OnTarget), null);
}
else
{
from.SendLocalizedMessage(502092); // You must be in your house to do this.
}
}
public void Placement_OnTarget(Mobile from, object targeted, object state)
{
IPoint3D p = targeted as IPoint3D;
Map map = from.Map;
if (p == null || map == null || Deleted)
return;
if (IsChildOf(from.Backpack))
{
Point3D loc = new Point3D(p);
BaseHouse house = BaseHouse.FindHouseAt(loc, from.Map, 16);
if (house != null && house.IsCoOwner(from))
{
Item addon = new BirdLamp();
addon.MoveToWorld(loc, from.Map);
house.Addons[addon] = from;
Delete();
}
else
{
from.SendLocalizedMessage(1042036); // That location is not in your house.
}
}
else
{
from.SendLocalizedMessage(1042001); // That must be in your pack for you to use it.
}
}
}
}