• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows Setting Base Character speed limit

  • Thread starter Thread starter Xikini
  • Start date Start date
X

Xikini

Guest
Using crying damson 8.54

How do you change the base character speed of players?

What I want to do is make it so all players walk the same speed unless armor/weapons change their walking speed to slower or faster, no matter their level.

So how do you change it so all characters upon level-up do not gain speed?

Thank you! Will rep++
 
It's perfect for what I need. The only very slight problem that it has is when a character level's it increases their speed until they logout. so if they level from level 1-100 they'll be level 100 speed + speed cap. But they don't level in my server very fast anyways, so it's perfect :)
 
use something like:

LUA:
local speed == 220

function onAdvance(cid, skill, oldLevel, newLevel)
    if(skill == SKILL__LEVEL and getPlayerGroupId(cid) < 4) then
        doChangeSpeed(cid, speed - getCreatureBaseSpeed(cid))
    end
    return true
end
 
Back
Top