Guest User

startup

a guest
Jul 26th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.37 KB | None | 0 0
  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 so far")
  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("(y)es or (n)o")
  25.  
  26. -- input = io.read()
  27. -- if input == "y" then
  28.  --  function checkPasswo
  29.         input = io.read()
  30.       if input == "y" then
  31.         return true
  32.       else
  33.         return false
  34.      end
  35.   --  end
  36. --   end
  37. while true do
  38.   if input == "y" then
  39.     rs.setOutput("back",true)
  40.       print("Please Wait While Backup Power Is Re-Routed")
  41.       print("Backup Power Routed 70%") sleep(0.5)
  42.       print("Backup Power Royted 90%") sleep(0.5)
  43.       print("Backup Power Routed Sucessfully") sleep(1.5)
  44. --print("The M
  45.   if checkPassword() == false then
  46.     print("Please Try Again")
  47.   end
  48.  end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment