Plazter

Downloader - Turtle

Oct 7th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. -- [Downloader Plazter's programs] --
  2.  
  3. function display()
  4.  
  5. term.clear()
  6. term.setCursorPos(1,1)
  7. print("What program do you wish to download?")
  8.  
  9. print("a.) Platform --[Turtle program ]--")
  10. print("b.) House Builder --[Turtle program ]--")
  11. print("c.) Auto quarry placement --[Turtle program ]--")
  12.  
  13. print("d.) Keypress timer")
  14. print("e.) Tree farm --[Turtle Program ]--")
  15.  
  16. local event, key = os.pullEvent("key")
  17.  
  18. if key == keys.a then
  19. print " I WILL NOW DOWNLOAD!"
  20. shell.run("pastebin get cYFCR6QB platform")
  21.  
  22. elseif key == keys.b then
  23. shell.run("pastebin get ThTv6i3G housebuilder")
  24. elseif key == keys.c then
  25. shell.run("pastebin get Sb8VwgwU quarry")
  26. elseif key == keys.d then
  27. shell.run("pastebin get eQwBW3mJ timer")
  28. elseif key == keys.e then
  29. shell.run("pastebin get iVSwJezC TreeFarm")
  30.  
  31. elseif not key == keys.a or keys.b or keys.c or keys.d then
  32. print("Error, wrong button")
  33. end
  34.  
  35. end
  36.  
  37. display()
Add Comment
Please, Sign In to add comment