Some bugs with max level

12/04/2013 10:14 raventh1984#1
Hi elitepvpers,

Well i have increased the max Level to 400.
However there are some text bugs as i believe with this level cap. And its starting from level 256

I have 2 characters 1 is level 400 and the second one is level 256

Now when i check the guild and i select guild member tab then i see that the level is on 1. Instead of level 256. Inside the messenger tab i see level 144 of the player that has level 400.

So somewhere inside the source its checking if the level is higher then 250 if so then start from 1 again.

So what i did was checked the source on m_nLevel = 1 or m_nLevel

But it seems i cant find it. I also checked WndMessenger.cpp/h WndMessengerCtr.cpp/h also the Guild.cpp/h files but its not in there or i am not seeing it.

Here is an Pic so you can see what i mean by it

[Only registered and activated users can see links. Click Here To Register...]

With kind regards
12/05/2013 18:45 Mognakor#2
Check the datatype used for level, it's probably unsigned char/BYTE which reaches from 0 to 255. Change it to unsigned short /WORD but you'll have to do this all over your source and maybe in the database.