Advertisement
Guest User

startup

a guest
Jun 27th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.82 KB | None | 0 0
  1. local fart = paintutils.loadImage("fart")
  2. local faart = paintutils.loadImage("faart")
  3. local faaart = paintutils.loadImage("faaart")
  4. local faaaart = paintutils.loadImage("faaaart")
  5. local faaaartS = paintutils.loadImage("faaaartS")
  6. local clears = paintutils.loadImage("clears")
  7. term.clear()
  8. term.setCursorPos( 1, 5)
  9. textutils.slowPrint("               77777     1      888 ")
  10. textutils.slowPrint("               7   7    11     8   8")
  11. textutils.slowPrint("                   7     1     8   8")
  12. textutils.slowPrint("                  7      1      888 ")
  13. textutils.slowPrint("                 7       1     8   8")
  14. textutils.slowPrint("                 7       1     8   8")
  15. textutils.slowPrint("                 7     11111    888 ")
  16. sleep(2)
  17. paintutils.drawImage(fart, 1, 1)
  18. sleep(1)
  19. paintutils.drawImage(faart, 1, 1)
  20. sleep(1)
  21. paintutils.drawImage(faaart, 1, 1)
  22. sleep(1)
  23. paintutils.drawImage(faaaart, 1, 1)
  24. sleep(1)
  25. paintutils.drawImage(faaaartS, 1, 1)
  26. sleep(2)
  27. paintutils.drawImage(clears, 1, 1)
  28. term.clear()
  29. term.setCursorPos(1,8)
  30. textutils.slowPrint("               Username:")
  31. term.setCursorPos(25,8)
  32. Username = read()
  33. if Username == "Super Issey" then
  34.   term.setCursorPos(1,10)
  35.   textutils.slowPrint("               Password:")
  36.   term.setCursorPos(25,10)
  37.   Password = read("*")
  38.   if Password == "753689214" then
  39.     term.setCursorPos(16,9)
  40.     term.setTextColor( colors.lime )
  41.     textutils.slowPrint("Access Granted")  
  42.     sleep(2)
  43.     term.clear()
  44.     term.setCursorPos(1,1)
  45.     term.setTextColor( colors.white )
  46.   else
  47.     term.setCursorPos(16,9)
  48.     term.setTextColor( colors.red )
  49.     textutils.slowPrint("Access Denied")
  50.     sleep(1)
  51.     os.reboot()
  52.   end
  53. else
  54.   term.setTextColor( colors.red )
  55.   textutils.slowPrint("Username Not In Database, Rebooting...")
  56.   sleep(1)
  57.   os.reboot()
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement