Version? U mean in protect zone right? Walkthrough players? On ALL tiles or specific tiles?Hi, anyone know a movement condition that block another player to try to go in sqm and it's not possible because there's a player in this sqm? thx
<movevent event="StepIn" actionid="800" script="stepBack.lua" />
function onStepIn(creature, item, position, fromPosition)
local tile = Tile(position)
if tile:getCreatureCount() > 1 then
creature:teleportTo(fromPosition, false)
end
return true
end