• 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!

[Help] Can Players have set speed?

MarkSmartRemark

Lua-Noob in Training :D
Joined
Jan 27, 2010
Messages
139
Reaction score
3
Hi, i wanted to know if theres a way you can have players hold the same speed throughout the whole game =) so a level 8 runs as fast as a level 928374987239487234 =]

i want this so when theres wars on my server there isnt some group of nubs running in, UEing then clicking minimap to blast out... lol
 
Hi, i wanted to know if theres a way you can have players hold the same speed throughout the whole game =) so a level 8 runs as fast as a level 928374987239487234 =]

i want this so when theres wars on my server there isnt some group of nubs running in, UEing then clicking minimap to blast out... lol

Yes, I used it in bomberman on my server. Just C++.
 
In player.h change
Code:
#define SPEED_MAX 2000
#define SPEED_MIN 10
to
Code:
#define SPEED_MAX 300
#define SPEED_MIN 300
or whatever number you would prefer.

Not 100% sure on what version you're using so I'm not sure if that's the correct code as well.

P.s. It's around line 130~
 
Back
Top