• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • If you're using Gesior 2012 or MyAAC, please review this thread for information about a serious security vulnerability and a fix.

OTClient Otcv8 remove the limits of level displayed, mana and life

beenii

Well-Known Member
Joined
Jul 26, 2010
Messages
569
Solutions
1
Reaction score
51
Does anyone know if that can be modified from the modules or if the source code should be edited? any suggestions where to look?
 
Does anyone know if that can be modified from the modules or if the source code should be edited? any suggestions where to look?
Limits? the limit its int32_t so you can change the limits

-The maximum value for int32_t is 2.147.483.647

If you want to increase the range of possible values, you can use the int64_t data type instead of int32_t, the maximum value for int64_t is 9.223.372.036.854.775.807

So.. You need modify server and client source to manage these messages and change them from int32_t to int64_t, including the INT values on database, need change to BIGINT
 
Back
Top