Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function automove()
  2. if aetherBeastCount > 0 and LastMove == "southwest" then
  3. send("pilot steer east")
  4. elseif LastMove == "south" then
  5. send("pilot steer north")
  6. elseif LastMove == "east" then
  7. send("pilot steer north")
  8. elseif LastMove == "north" then
  9. send("pilot steer south")
  10. elseif LastMove == "west" then
  11. send("pilot steer east")
  12. end
  13. if aetherBeastCount == 0 and LastMove == "southwest" then
  14. send("pilot steer west")
  15. elseif LastMove == "south" then
  16. send("pilot steer west")
  17. elseif LastMove == "east" then
  18. send("pilot steer west")
  19. elseif LastMove == "north" then
  20. send("pilot steer southwest")
  21. elseif LastMove == "west" then
  22. send("pilot steer west")
  23. end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement