Aetherius Shadowblade
Member
Does anyone have one. I am looking to change just the bodyvalue of the player but leave the paperdoll intact. So it should not affect armor or weapons available.
//Created By Cassius for Order of The Red Dragon
using System;
namespace Server.Items
{
public class OgreRaceGate : Item
{
[Constructable]
public AngelRaceGate() : base(0xF6C)
{
Movable = false;
Light = LightType.Circle300;
Hue = 2647;
Name = Ogre Race Gate";
}
public AngelRaceGate(Serial serial) : base(serial)
{
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int) 0);
}
public override bool OnMoveOver( Mobile m )
{
m.SendMessage( "You are Now an Ogre" );
m.Title = "The Ogre";
m.PlayerMobile = 1
return false; //Changed this to false
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
}
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.