Omegaexdeath
Member
Okay I got baseArmor & baseJewel to display get prop gump & added the GetContextMenuEntries
Got my baseCloth script edited same exsact way i did the others but it is not displaying getprop gump in game.
& yes i added the using Server.Engines.XmlSpawner2; to both the cloth & jewel scripts
GetContextMenuEntries
GetProperties
the Server starts up and runs with out error so i cant tell where i went wrong on this one
attached my BC.cs if anybody can help
Got my baseCloth script edited same exsact way i did the others but it is not displaying getprop gump in game.
& yes i added the using Server.Engines.XmlSpawner2; to both the cloth & jewel scripts
GetContextMenuEntries
Code:
XmlLevelItem levitem = XmlAttach.FindAttachment(this, typeof(XmlLevelItem)) as XmlLevelItem;
if (levitem != null)
{
list.Add(new LevelInfoEntry(from, this, AttributeCategory.Melee));
}
GetProperties
Code:
XmlLevelItem levitem = XmlAttach.FindAttachment(this, typeof(XmlLevelItem)) as XmlLevelItem;
if (levitem != null)
{
list.Add(1060658, "Level\t{0}", levitem.Level);
if (LevelItems.DisplayExpProp)
{
list.Add(1060659, "Experience\t{0}", levitem.Experience);
}
the Server starts up and runs with out error so i cant tell where i went wrong on this one
attached my BC.cs if anybody can help