Jump to content

TehPhoenixz

Members
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 GBP 

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

TehPhoenixz's Achievements

Newbie

Newbie (1/3)

1

Reputation

  1. 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; }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use