Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
1,153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. print("Welcome to Boot!")
  2. sleep(3)
  3. print("Please Enter The Turtles New Name")
  4. local input = read()
  5.  
  6. shell.run("label","set",input)
  7. print("turtles name has been set to",input)
  8.  
  9. print("Downloading startup scripts...")
  10. print("Downloading FunctionAPI: Back")
  11. sleep(1)
  12. shell.run("pastebin","get","txSA2rUZ","Back")
  13. print("Downloading FunctionAPI: Left")
  14. sleep(1)
  15. shell.run("pastebin","get","4jivq9JL","Left")
  16. print("Downloading FunctionAPI: Right")
  17. sleep(1)
  18. shell.run("pastebin","get","Hq9P6XXe","Right")
  19. print("Downloading FunctionAPI - Forward")
  20. sleep(1)
  21. shell.run("pastebin","get","Vze9TTdz","Forward")
  22. print("Downloading Application: Quarry Placer V.1.0")
  23. sleep(1)
  24. shell.run("pastebin","get","w10QFfXV","quarryplace")
  25. print("Downloading Application: Farmer")
  26. shell.run("pastebin","get","7whEj1DQ","farmer")
  27.  
  28. print("Running 3D dignostics....")
  29. shell.run("Left")
  30. shell.run("Left")
  31. shell.run("Left")
  32. shell.run("Left")
  33. shell.run("Back")
  34. shell.run("Forward")
  35. shell.run("Right")
  36. shell.run("Right")
  37. shell.run("Right")
  38. shell.run("Right")
  39. print("3D dignostics Completed....")
  40. sleep(3)
  41. local fuel = turtle.getFuelLevel()
  42. local name = os.getComputerLabel()
  43. print("Booting completed, Turtles new name is ",name," and he currently has ",fuel," fuel")
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement