Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

65k health/damage visual bug? + other bugs

Newbie Spellweaver
Joined
Nov 1, 2023
Messages
6
Reaction score
1
Hello friends.

How to fix this 65k display bug?



In party window we can see other value


Also, its possbile to change displaying location names to looks like in older seasons?


And last question.
Can somebody help me with this? almost every armor in game looks like this in eq.


Regards.
 
Solution
The actual maximum value of a 16 bit integer is 65535. It's not a bug, it's a limitation of the network protocol. I guess either server or client side added a limit of 65000. You need to change client and server sources to extend these damage fields to more bits, e.g. a 32 bit integer.
Joined
Aug 6, 2005
Messages
552
Reaction score
298
The actual maximum value of a 16 bit integer is 65535. It's not a bug, it's a limitation of the network protocol. I guess either server or client side added a limit of 65000. You need to change client and server sources to extend these damage fields to more bits, e.g. a 32 bit integer.
 
Upvote 0
Solution
Newbie Spellweaver
Joined
Nov 1, 2023
Messages
6
Reaction score
1
The actual maximum value of a 16 bit integer is 65535. It's not a bug, it's a limitation of the network protocol. I guess either server or client side added a limit of 65000. You need to change client and server sources to extend these damage fields to more bits, e.g. a 32 bit integer.
So i need to work on other source if i want to have biggest dmg/hp etc values?
 
Upvote 0
Joined
May 26, 2009
Messages
17,308
Reaction score
3,219
what i remember some files have in client side patching like main_info tool or so inside max dmg or something like that which ppl put 65000, so if u can change, change it there depending on whwat files u use.

The wrong position armors look weird indeed, u can either test backup client/data' folder and put from other client same season etc to see if it fixes it, or the item.bmd from client/data/local/ as well u can test


displaying old names like old seasons should be easy, find the folder in client data of the names that u see in game and if they are same file .ozt or whatever with older seasons just rename them to how your existing map names are and try to use them directly like that.
 
Upvote 0
Back
Top