https://github.com/mangoszero/server/blob/master/src/game/Object/Formulas.h
GetGrayLevel is incorrect for Level 60:
else if (pl_level <= 39) { return pl_level - 5 - pl_level / 10; } else { return pl_level - 1 - pl_level / 5; }
Should be:
else if (pl_level <= 39)
{ return pl_level - 5 - pl_level / 10; }
else if (pl_level == 60)
{ return 51; }
else
{ return pl_level - 1 - pl_level / 5; }
Recommended Comments
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now