Kamras
Member
So far the issue is ALL BASECLOTHING is not working. BaseJewel, BaseArmor and BaseWeapon using regular equipment and artifact drops are respected. Looking furhter
Here is a fix, I've already posted it to the overview list. BaseClothing needs an extra entry.
In BaseClothing.cs Locate
at the bottom of the section , replace
with this
sorry it took a minute to get that in place. Let me know if you run into anymore weirdness.
Post automatically merged:
Here is a fix, I've already posted it to the overview list. BaseClothing needs an extra entry.
In BaseClothing.cs Locate
C#:
public override bool CanEquip(Mobile from)
{
at the bottom of the section , replace
C#:
}
return base.CanEquip(from);
}
with this
C#:
}
if (!Server.Engines.XmlSpawner2.XmlAttach.CheckCanEquip(this, from))
return false;
else
return base.CanEquip(from);
}
sorry it took a minute to get that in place. Let me know if you run into anymore weirdness.
Last edited: