PHP Code:
function onPlayerTouchsMe()
{
this.scheduleEvent(3, "check", {player.account, player.x, player.y});
}
function onCheck(pa, px, py)
{
temp.pl = findPlayer(pa);
if (temp.pl.x == px && temp.pl.y == py)
{
// you stood still
}
}
^-- that what you want?