you might be able to comment this part out

public override void OnDoubleClick(Mobile from)
{
if (from.Race != Race.Elf && from == ControlMaster && from.IsPlayer())
{
Item pads = from.FindItemOnLayer(Layer.Shoes);

if (pads is PadsOfTheCuSidhe)
from.SendLocalizedMessage(1071981); // Your boots allow you to mount the Cu Sidhe.
else
{
from.SendLocalizedMessage(1072203); // Only Elves may use
return;
}
}

base.OnDoubleClick(from);
}

or just hand out the boots to humans lol
 
you might be able to comment this part out

public override void OnDoubleClick(Mobile from)
{
if (from.Race != Race.Elf && from == ControlMaster && from.IsPlayer())
{
Item pads = from.FindItemOnLayer(Layer.Shoes);

if (pads is PadsOfTheCuSidhe)
from.SendLocalizedMessage(1071981); // Your boots allow you to mount the Cu Sidhe.
else
{
from.SendLocalizedMessage(1072203); // Only Elves may use
return;
}
}

base.OnDoubleClick(from);
}

or just hand out the boots to humans lol
lol ok i will try:) thx
[doublepost=1531461845][/doublepost]
you might be able to comment this part out

public override void OnDoubleClick(Mobile from)
{
if (from.Race != Race.Elf && from == ControlMaster && from.IsPlayer())
{
Item pads = from.FindItemOnLayer(Layer.Shoes);

if (pads is PadsOfTheCuSidhe)
from.SendLocalizedMessage(1071981); // Your boots allow you to mount the Cu Sidhe.
else
{
from.SendLocalizedMessage(1072203); // Only Elves may use
return;
}
}

base.OnDoubleClick(from);
}

or just hand out the boots to humans lol
i did that but still cant tame it as human :d
 
Back