184 lines
5.2 KiB
C#
184 lines
5.2 KiB
C#
using System;
|
|
using Server.Gumps;
|
|
using Server.Network;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class WoodenCoffinComponent : AddonComponent
|
|
{
|
|
public WoodenCoffinComponent(int itemID)
|
|
: base(itemID)
|
|
{
|
|
}
|
|
|
|
public WoodenCoffinComponent(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override int LabelNumber
|
|
{
|
|
get
|
|
{
|
|
return 1076274;
|
|
}
|
|
}// Coffin
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.WriteEncodedInt(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
}
|
|
|
|
public class WoodenCoffinAddon : BaseAddon
|
|
{
|
|
[Constructable]
|
|
public WoodenCoffinAddon(bool east)
|
|
: base()
|
|
{
|
|
if (east) // east
|
|
{
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C41), 0, 0, 0);
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C42), 1, 0, 0);
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C43), 2, 0, 0);
|
|
}
|
|
else // south
|
|
{
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C4F), 0, 0, 0);
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C50), 0, 1, 0);
|
|
this.AddComponent(new WoodenCoffinComponent(0x1C51), 0, 2, 0);
|
|
}
|
|
}
|
|
|
|
public WoodenCoffinAddon(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override BaseAddonDeed Deed
|
|
{
|
|
get
|
|
{
|
|
return new WoodenCoffinDeed();
|
|
}
|
|
}
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.WriteEncodedInt(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
}
|
|
|
|
public class WoodenCoffinDeed : BaseAddonDeed
|
|
{
|
|
private bool m_East;
|
|
[Constructable]
|
|
public WoodenCoffinDeed()
|
|
: base()
|
|
{
|
|
this.LootType = LootType.Blessed;
|
|
}
|
|
|
|
public WoodenCoffinDeed(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override BaseAddon Addon
|
|
{
|
|
get
|
|
{
|
|
return new WoodenCoffinAddon(this.m_East);
|
|
}
|
|
}
|
|
public override int LabelNumber
|
|
{
|
|
get
|
|
{
|
|
return 1076274;
|
|
}
|
|
}// Coffin
|
|
public override void OnDoubleClick(Mobile from)
|
|
{
|
|
if (this.IsChildOf(from.Backpack))
|
|
{
|
|
from.CloseGump(typeof(InternalGump));
|
|
from.SendGump(new InternalGump(this));
|
|
}
|
|
else
|
|
from.SendLocalizedMessage(1062334); // This item must be in your backpack to be used.
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.WriteEncodedInt(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadEncodedInt();
|
|
}
|
|
|
|
private void SendTarget(Mobile m)
|
|
{
|
|
base.OnDoubleClick(m);
|
|
}
|
|
|
|
private class InternalGump : Gump
|
|
{
|
|
private readonly WoodenCoffinDeed m_Deed;
|
|
public InternalGump(WoodenCoffinDeed deed)
|
|
: base(60, 36)
|
|
{
|
|
this.m_Deed = deed;
|
|
|
|
this.AddPage(0);
|
|
|
|
this.AddBackground(0, 0, 273, 324, 0x13BE);
|
|
this.AddImageTiled(10, 10, 253, 20, 0xA40);
|
|
this.AddImageTiled(10, 40, 253, 244, 0xA40);
|
|
this.AddImageTiled(10, 294, 253, 20, 0xA40);
|
|
this.AddAlphaRegion(10, 10, 253, 304);
|
|
this.AddButton(10, 294, 0xFB1, 0xFB2, 0, GumpButtonType.Reply, 0);
|
|
this.AddHtmlLocalized(45, 296, 450, 20, 1060051, 0x7FFF, false, false); // CANCEL
|
|
this.AddHtmlLocalized(14, 12, 273, 20, 1076748, 0x7FFF, false, false); // Please select your coffin position
|
|
|
|
this.AddPage(1);
|
|
|
|
this.AddButton(19, 49, 0x845, 0x846, 1, GumpButtonType.Reply, 0);
|
|
this.AddHtmlLocalized(44, 47, 213, 20, 1075386, 0x7FFF, false, false); // South
|
|
this.AddButton(19, 73, 0x845, 0x846, 2, GumpButtonType.Reply, 0);
|
|
this.AddHtmlLocalized(44, 71, 213, 20, 1075387, 0x7FFF, false, false); // East
|
|
}
|
|
|
|
public override void OnResponse(NetState sender, RelayInfo info)
|
|
{
|
|
if (this.m_Deed == null || this.m_Deed.Deleted || info.ButtonID == 0)
|
|
return;
|
|
|
|
this.m_Deed.m_East = (info.ButtonID != 1);
|
|
this.m_Deed.SendTarget(sender.Mobile);
|
|
}
|
|
}
|
|
}
|
|
} |