Hi, just wondering if there is a function to check whether creature moved
and it would be even better if there is a way to check in which direction they go. For example;
tfs 1.0
and it would be even better if there is a way to check in which direction they go. For example;
LUA:
function onMove(cid)
if not isPlayer(cid) then
return false
end
if direction == WEST then
do something
end
tfs 1.0