Guest User

startup

a guest
Mar 9th, 2013
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("AzhfTechOS AlphaTest")
  4. print("Thank you for using AzhfTech.")
  5. print("Loading...")
  6. sleep(.5)
  7. print("Loaded.")
  8. sleep(1)
  9. term.clear()
  10. term.setCursorPos(1,1)
  11. print("AzhfTechOS AlphaTest")
  12. sleep(.5)
  13. print("Would you like to enter Firewolf? Must have firewolf installed. (Yes/No)" )
  14. local is
  15. repeat term.setCursorPos(1, 1) term.clearLine() is = read() :lower() until is == "yes" or is == "no"
  16. if is == "yes" then
  17. shell.run("firewolf")
  18. else
  19. term.clear()
  20. print("Okay")
  21. sleep(.5)
  22. term.clear()
  23. term.setCursorPos(1,1)
  24. print("AzhfTechOS AlphaTest")
  25. print("If you have downloaded and installed the credits file, type 'credits' for the credits, obviously XD")
  26. end
Advertisement
Add Comment
Please, Sign In to add comment