Advertisement
Cadevine

installCadeOS (terminal)

Jan 15th, 2025 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. term.setCursorPos(1,1)
  2. term.setBackgroundColor(colors.gray)
  3. term.clear()
  4.  
  5. function newLine()
  6. sleep(1)
  7. print()
  8. print()
  9. term.setTextColor(colors.orange)
  10. end
  11.  
  12. function textLightGray()
  13. term.setTextColor(colors.lightGray)
  14. sleep(1)
  15. print()
  16. end
  17.  
  18. term.setTextColor(colors.orange)
  19. sleep(1)
  20. textutils.slowWrite("Installing CadeOS...")
  21.  
  22. newLine()
  23. textutils.slowWrite("Fetching CadeOS files from Pastebin.com...")
  24.  
  25. newLine()
  26. textutils.slowWrite("- Downloading startup.lua")
  27. textLightGray()
  28. shell.run("pastebin get 5HwtX2sP startup.lua")
  29.  
  30. newLine()
  31. textutils.slowWrite("- Downloading CadeOS/remote.lua")
  32. textLightGray()
  33. shell.run("pastebin get RearwQif CadeOS/remote.lua")
  34.  
  35. newLine()
  36. textutils.slowWrite("- Downloading CadeOS/launchRednet.lua")
  37. textLightGray()
  38. shell.run("pastebin get Ln5aALhd CadeOS/launchRednet.lua")
  39.  
  40. newLine()
  41. textutils.slowWrite("- Downloading CadeOS/headerCadeOS.lua")
  42. textLightGray()
  43. shell.run("pastebin get seNmwp1e CadeOS/headerCadeOS.lua")
  44.  
  45. newLine()
  46. print("Installation successful!")
  47. print()
  48. print("Terminal restarting in 5 seconds.")
  49. sleep(5)
  50. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement