Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
39
Scripts/Items/StoreBought/BarrelMailbox.cs
Normal file
39
Scripts/Items/StoreBought/BarrelMailbox.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Furniture]
|
||||
public class BarrelMailbox : Mailbox, IFlipable
|
||||
{
|
||||
public override int LabelNumber { get { return 1113927; } } // Mailbox
|
||||
public override int DefaultGumpID { get { return 0x6D5; } }
|
||||
|
||||
public override int SouthMailBoxID { get { return 0xA1F8; } }
|
||||
public override int SouthEmptyMailBoxID { get { return 0xA1F9; } }
|
||||
public override int EastMailBoxID { get { return 0xA1F5; } }
|
||||
public override int EastEmptyMailBoxID { get { return 0xA1F7; } }
|
||||
|
||||
[Constructable]
|
||||
public BarrelMailbox()
|
||||
: base(0xA1F7)
|
||||
{
|
||||
}
|
||||
|
||||
public BarrelMailbox(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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user