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

Compiling gm gods

According to the sources the max and min speed is defined in player.h on line 124 & 125
Code:
#define PLAYER_MAX_SPEED 1500 // line 124
#define PLAYER_MIN_SPEED 10     // line 125

I rather not go into extensive details, but basically if the player's has a flag enabled PlayerFlag_SetMaxSpeed then their speed will be set to 1500
If they don't have that flag enabled then it will be the vocation's base speed + (2 * (level - 1) ).

Now you know that line 124 in player.h controls the max speed of your gm :)
 
Back
Top