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!

[Tutorial] Command Set High Jump

Newbie Spellweaver
Joined
Nov 6, 2023
Messages
19
Reaction score
12
Happy New Year !

Client side search:

C++:
// ch_ - cheats

at the top according to your own rules.

C++:
REG_VAR( RageZone_SuperJump, 0, 0 );

search:

C++:
return; // cancel jump

Below:

C++:
JumpVelocity  = 17;

Add Below:

C++:
if( RageZone_SuperJump->GetInt())
JumpVelocity = (float)RageZone_SuperJump->GetInt();

search:

C++:
if (strncmp(s_chatMsg, "/stime", 6) == NULL)

Then write this code above that function.

>> Code in the picture <<

63459230_668298416975164_1807721060229971968_n - [Tutorial] Command Set High Jump - RaGEZONE Forums


Using commands in chat.

Code:
/jump 25

P.S. 25 is the high jump value. There will be cool notifications as well. You can use it for many more eras. Let's go.

Please be careful of the orders.
 

Attachments

You must be registered for see attachments list
Last edited:
Back
Top