HDR

Music System Installer 2.5

HDR
Aug 25th, 2016
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.83 KB | None | 0 0
  1. --# Made By HDR - @MartinRefseth #--
  2. --# Version 2.5 #--
  3.  
  4. term.setBackgroundColor(colors.gray)
  5. term.clear()
  6. term.setTextColor(colors.orange)
  7. term.setCursorPos(1,1)
  8. print("Input 1 For Lite System")
  9. term.setCursorPos(1,2)
  10. print("Input 2 For Infinity Evolved System")
  11. term.setCursorPos(1,3)
  12. print("Input 3 For Remote Server (Infinity Evolved)")
  13. term.setCursorPos(1,4)
  14. print("Input 4 For Remote Client (Infinity Evolved)")
  15. term.setCursorPos(1,5)
  16. print("Input 5 For Project Ozone 2 System (Deprecated)")
  17. print("Enter Selection: ")
  18. one = "1"
  19. two = "2"
  20. three = "3"
  21. four = "4"
  22. five = "5"
  23. input = read()
  24. if input == one then
  25.  term.clear()
  26.  term.setCursorPos(1,1)
  27.  print("Installing Lite")
  28.  sleep(0.5)
  29.  shell.run("pastebin get pFHeia96 touchpoint")
  30.  shell.run("pastebin get nd1ALJut startup")
  31.  sleep(0.5)
  32.  os.reboot()
  33. elseif input == two then
  34.  term.clear()
  35.  term.setCursorPos(1,1)
  36.  print("Installing Infinity Evolved")
  37.  sleep(0.5)
  38.  shell.run("pastebin get pFHeia96 touchpoint")
  39.  shell.run("pastebin get Az75cPJ6 startup")
  40.  sleep(0.5)
  41.  os.reboot()
  42. elseif input == three then
  43.  term.clear()
  44.  term.setCursorPos(1,1)
  45.  print("Installing Remote Server")
  46.  sleep(0.5)
  47.  shell.run("pastebin get Gni86EYU startup")
  48.  shell.run("pastebin get HpvWZR1t update")
  49.  sleep(0.5)
  50.  os.reboot()
  51. elseif input == four then
  52.  sleep(0.5)
  53.  term.clear()
  54.  term.setCursorPos(1,1)
  55.  print("Installing Remote Client")
  56.  shell.run("pastebin get pFHeia96 touchpoint")
  57.  shell.run("pastebin get 7N4ZJ1Yr startup")
  58.  shell.run("pastebin get VMbfadeq update")
  59.  sleep(0.5)
  60.  os.reboot()
  61. elseif input == five then
  62.  sleep(0.5)
  63.  term.clear()
  64.  term.setCursorPos(1,1)
  65.  print("Installing Project Ozone 2 System")
  66.  shell.run("pastebin get BHvV53fc startup")
  67.  shell.run("pastebin get pFHeia96 touchpoint")
  68.  sleep(0.5)
  69.  os.reboot()
  70. else
  71.  print("Incorrect Input")
  72. end
Advertisement
Add Comment
Please, Sign In to add comment