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

TFS 1.X+ Player Speed Limit

myalitth

New Member
Joined
Jan 13, 2013
Messages
69
Reaction score
3
Is there any way to change the speed of the character? This 750 at now.

750 to 1500~

Max speed on tibia global is 2000.
 
i see a lot otservers with players running with speed 750+
Maybe need to change any script or source.
you said you changed player.h which is changing the speed limit
i just did it myself, set it to the max value that jo3bingham said, you'll see the difference
keep in mind if you do remove the / 2 to display the correct speed, you can't change the max speed past 65535 or else your client will debug
 
Is there any way to make the in-game speed exceed 1000? or the maximum that can be put into player.h is 1500 which would be 1500/2 = 750.?
 
Is there any way to make the in-game speed exceed 1000? or the maximum that can be put into player.h is 1500 which would be 1500/2 = 750.?
the 1500 is defining the max speed, if you change that value then it changes the max speed
static constexpr int32_t PLAYER_MAX_SPEED = 2000;
that would change the max speed to 2000
compile and start your server back up, log into a god char, your speed will be 2000
you can do this with any value up to 65535
 
Back
Top