Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. set #lpc 10
  2. ; 1016/537 n -> s
  3. ; 961/537 e -> w
  4. ; 961/501 s -> n
  5. ; 1016/501 w -> e
  6. while #true
  7. {
  8. gosub nord2sud
  9. gosub est2west
  10. gosub sud2nord
  11. gosub west2est
  12. }
  13.  
  14. sub nord2sud
  15. event pathfind 967 496 -70
  16. wait 120
  17. move 967 496 -70
  18. wait 300
  19. return est2west
  20.  
  21. sub est2west
  22. event pathfind 914 469 -70
  23. wait 120
  24. move 914 469 -70
  25. wait 310
  26. return sud2nord
  27.  
  28. sub sud2nord
  29. event pathfind 894 386 -70
  30. wait 120
  31. move 894 386 -70
  32. wait 310
  33. return west2est
  34.  
  35. sub west2est
  36. event pathfind 946 384 -70
  37. wait 120
  38. move 946 384 -70
  39. wait 310
  40. return nord2sud
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement