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!

Basic Stats Window [v83]

Initiate Mage
Joined
Sep 9, 2017
Messages
3
Reaction score
0
Does anybody know how to get rid of this window under your stats in v83?

8270e52952141a62de0e19bdb5735a9e - Basic Stats Window [v83] - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
I wanted to get rid of this as well, tbh. Just like modifying anything else in the client, you're going to need to know how to use Olly.

Simply find and go to the address 008C61A8, and change its instruction to JMP 008C6314. This will jump over the check for if level <= 10 in v83 clients.

Hope this helps!
 
Upvote 0
Initiate Mage
Joined
Sep 9, 2017
Messages
3
Reaction score
0
Thank you for your response.

I just used Olly to change 008C61A8 toJMP 008C6314 and it worked.But now I have another problem. There are no buttons to assign any AP. After level 10 when I get to 11 the buttons show up again.

6e2dc5ce2393586abac83925ffd5cdfe - Basic Stats Window [v83] - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Thank you for your response.

I just used Olly to change 008C61A8 toJMP 008C6314 and it worked.But now I have another problem. There are no buttons to assign any AP. After level 10 when I get to 11 the buttons show up again.

6e2dc5ce2393586abac83925ffd5cdfe - Basic Stats Window [v83] - RaGEZONE Forums

Lol gg, Nexon. Alrighty, try changing these addresses to the following as well:
008C7A49 -> JMP 008C7AA3 // should enable BtApUp
008C53F4 -> JMP 008C5425 // some tooltip check on mouse move

while i was looking around, there's an additional check for ap buttons that checks for character level < 20. i'm thinking that's the end of base stat (str + dex) being highlighted? no idea, but if you want to jump that addy, here's that one too:
008C58E0 -> JMP 008C590A

let me know if that does the trick, or if nexon has more hidden checks lying around in the handlers LOL
 

Attachments

You must be registered for see attachments list
Upvote 0
Initiate Mage
Joined
Sep 9, 2017
Messages
3
Reaction score
0
Lol gg, Nexon. Alrighty, try changing these addresses to the following as well:
008C7A49 -> JMP 008C7AA3 // should enable BtApUp
008C53F4 -> JMP 008C5425 // some tooltip check on mouse move

while i was looking around, there's an additional check for ap buttons that checks for character level < 20. i'm thinking that's the end of base stat (str + dex) being highlighted? no idea, but if you want to jump that addy, here's that one too:
008C58E0 -> JMP 008C590A

let me know if that does the trick, or if nexon has more hidden checks lying around in the handlers LOL
Thank you so much again.
One more question. Would you be able to figure out on how to remove the auto AP thing. For GMs it does remove it so I am pretty sure there is a check in the client for it.
 
Upvote 0
Back
Top