I am looking for the part of a script that limits the stats a young player can have before he/she loses young status. Thanks for any and all help.
 
It's in PlayerMobile.cs

Code:
if (SkillsTotal >= 4500 && (!Core.AOS && Skills[skill].Base >= 80.0))
 
Thank you for pointing me in the right direction.
Does that mean if any skill is over 80 and if the total skill is more than 450?
Again, thank you for your time.
 
Yes. The check happens any time any skill goes up. The total and the particular skill that went up are checked against those conditions.
 
Back