View Single Post
Old 08-19-2008, 04:42 PM   #92 (permalink)
KKND
Newbie
 
Join Date: Jun 2008
Posts: 73
Default

can u do the same with this?
//**** Thantos ****//


using System;

namespace Server.Items
{
public class IshaysGayWand : BaseOuterTorso
{
[Constructable]
public IshaysGayWand()
: this(0)
{
}

[Constructable]
public IshaysGayWand(int hue)
: base(0x3FFD, hue)
{
Name = "IshaysGayWand";
Weight = 3.0;
}

public override bool Dye(Mobile from, DyeTub sender)
{
from.SendLocalizedMessage(sender.FailMessage);
return false;
}

public IshaysGayWand(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();
}
}
}
dont works either

PS big thx :P
__________________
Land of Mystery osi style shard.
KKND is offline   Reply With Quote