sahisahi
Member
Im uisng XMLlevelitems and runuo, im Trying to display Level and experience
this is what i have, not working so far:
when i singleclick it just display the item name
this is what i have, not working so far:
Code:
public override void OnSingleClick(Mobile from)
{
XmlLevelItem levitem = XmlAttach.FindAttachment(this, typeof(XmlLevelItem)) as XmlLevelItem;
string name;
if (levitem != null)
name = string.Format( "Level\t{0}", levitem.Level);
when i singleclick it just display the item name