Advertisement
star_weaver

Untitled

Jul 26th, 2014
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. print("Loading 1%") sleep(0.1)
  5. print("Loading 5%") sleep(0.1)
  6. print("Loading 10%") sleep(0.1)
  7. print("Loading 12%")
  8. print("Initiallizing Data") sleep(0.7)
  9. print("Loading 15%") sleep(1.0)
  10. print("Loading 16%") sleep(2.0)
  11. print("Doing system checks 1%") sleep(0.5)
  12. print("Doing System Checks 10%") sleep(1.0)
  13. print("Doing System Checks 50%") sleep(5.0)
  14. print("Doing System Checks.. 90% No Errors found")
  15. print("System Checks Complete")
  16. print("Loading 20%") sleep(1.0)
  17. print("Loading 30%") sleep(1.0)
  18. print("Loading 55%") sleep(1.2)
  19. print("Loading 70%") sleep(0.5)
  20. print("Loading 75%") sleep(1.6)
  21. print("Loading Complete") sleep(0.5)
  22. print("Emergency Power Control") sleep(1.0)
  23. print("Re-Route Emergency Power?")
  24. print("yes or no")
  25.  
  26.      input = io.read()
  27.       if input == "yes" then
  28.     rs.setOutput("back",true)
  29.       print("Please Wait While Backup Power Is Re-Routed")
  30.       print("Backup Power Routed 70%") sleep(0.5)
  31.       print("Backup Power Routed 90%") sleep(0.5)
  32.       print("Backup Power Routed Successfully") sleep(1.5)
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement