Hi all, I have some items like Mysterious armor with some Bonus STR, and also some skill bonuses, but the Bonuses get ignore when a player wears them, the armor is just an example as it also happens on Magixc Cloth anything with aBonus basically, I eddited this line at AOS.cs sk.ObeyCap = false; but still no luck any ideas?
 
In CharacterCreation I would try changing my skill cap. maybe like this:
if (newChar is PlayerMobile)
{
PlayerMobile pm = (PlayerMobile)newChar;
pm.AutoRenewInsurance = true;
double skillcap = Config.Get("PlayerCaps.SkillCap", 1000.0d) / 10;
if (skillcap != 140.0)
 
Back