Plot:Walk hero
From OHRRPGCE-Wiki
walk hero (who, direction, distance)
Makes the specified hero move in the specified direction for the specified number of tiles. The first argument tells who to move. Use me or numbers 0-3. The second argument is the direction. Use the constants: north, south, east, west, up, down, left, or right. The third argument is the number of tiles to move. If you leave out the third argument, the hero will move one tile. Walk hero is usually used with the wait for hero command. You should normally use the suspend player command before moving heros, and if you want to move heros other than the leader, you should use the suspend caterpillar command.
[edit] Examples
suspend player # stop player walk hero(me,up,3) # move him up 3 tiles resume player # ok, done
