Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
32
Scripts/Services/TreasureMaps/BagOfGems.cs
Normal file
32
Scripts/Services/TreasureMaps/BagOfGems.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute(0xA333, 0xA334)]
|
||||
public class BagOfGems : Bag
|
||||
{
|
||||
public override int LabelNumber { get { return 1048032; } } // a bag
|
||||
|
||||
public BagOfGems()
|
||||
{
|
||||
ItemID = 0xA333;
|
||||
}
|
||||
|
||||
public BagOfGems(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user