Advertisement
Guest User

Turtle Maxe

a guest
Oct 27th, 2012
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1, 1)
  3. print("==================")
  4. print("TURTLE MAZE v.0.3F")
  5. print("= =")
  6. print("List of Commands:")
  7. print("1. maze - Run through a maze")
  8. print("2. cred - View the credits")
  9. print("==================")
  10. term.setCursorPos(1, 8)
  11. local inputmenu = read()
  12. if inputmenu == "maze" then
  13. term.clear()
  14. term.setCursorPos(1, 1)
  15. print("I will have a 1/6 chance to move in any possible direction.")
  16. print("Go!")
  17. local r = 0
  18. local moves = {
  19. {char="f",move=turtle.forward},
  20. {char="b",move=turtle.back},
  21. {char="l",move=turtle.turnLeft},
  22. {char="r",move=turtle.turnRight},
  23. {char="u",move=turtle.up},
  24. {char="d",move=turtle.down}
  25. }
  26. while true do
  27. r = math.random(1, #moves)
  28. write(moves[r].char)
  29. moves[r].move()
  30. end
  31. end
  32. if inputmenu == "cred" then
  33. print("Credits")
  34. print("===============")
  35. print("Development")
  36. print("Jediknightkazy jag_e_nummr_ett")
  37. print("Orwell")
  38. sleep(3)
  39. print("===============")
  40. print("Helping Out/Testing")
  41. print("sIdEkIcK_ jag_e_nummer_ett")
  42. sleep(3)
  43. print("===============")
  44. print("THANKS TO")
  45. print("Orwell thesbros")
  46. term.clear()
  47. term.setCursorPos(1, 1)
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement