public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
}
//This method added for [bandself command to call.
public static void BandSelfCommandCall(Mobile from, Item m_Bandage)
{
from.RevealingAction();
if (BandageContext.BeginHeal(from, from) != null)
m_Bandage.Consume();
}
this is what i haveFind this code in your Bandage.cs file
and put this code under itC#:public override void Deserialize(GenericReader reader) { base.Deserialize(reader); int version = reader.ReadInt(); }
C#://This method added for [bandself command to call. public static void BandSelfCommandCall(Mobile from, Item m_Bandage) { from.RevealingAction(); if (BandageContext.BeginHeal(from, from) != null) m_Bandage.Consume(); }
and this one i have two diff ones
We use essential cookies to make this site work, and optional cookies to enhance your experience.