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

Ctrl walking

Sweetlove

Member
Joined
Jun 22, 2009
Messages
270
Reaction score
14
Location
Sverige
Hey!

Is it possible to make this possible on newer clients " 10.37 , tfs 1.0 "

Also, grass and other slowmotion moving tiles effect Gm's running speed, is there a way to change this ??
 
Last edited:
You mean move through everything as a GM with CTRL + arrows?

In that case, you can change your Player:eek:nTurn() function in events to this:
Code:
function Player:onTurn(direction)
    if(self:getGroup():getAccess() and self:getDirection() == direction) then
        local pos = self:getPosition()
        self:teleportTo(direction == NORTH and pos - {y = 1} or direction == EAST and pos + {x = 1} or direction == SOUTH and pos + {y = 1} or pos - {x = 1}, true)
    end
    return true
end
 
Back
Top