Quote:
|
Originally Posted by vladimir
hey ty ...can i ask ya how to fic the AR on armor so it goes over 70 ...i know its in playermobiles......( i think )....just not sure what line to fix ???or how ??
|
There is a static Mobile Property called Mobile.MaxPlayerResistance which takes an integer value.
You set this for all mobiles by doing the following in any class, everyone else suggestion most likely won't work talking about Ceday's suggestion modifying ArmorRating :-)
[code:1]public static void Initialize()
{
Mobile.MaxPlayerResistance = 71;
}[/code:1]