neo32100

NeoOS

Apr 12th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.39 KB | None | 0 0
  1. -- To Install Go Into A "ADVANCED COMPUTER" And Type In pastebin get 5mQ7xhP0 startup  !
  2.  
  3. shell.run("pastebin get XfzGYv0V cs")
  4. shell.run("pastebin get ZDLChHZU shell")
  5. shell.run("pastebin get Jme9hGui rb")
  6. term.clear()
  7. term.setCursorPos(15,1)
  8. print("Enabling NeoOS V1.0...")
  9. sleep(1)
  10. term.setCursorPos(19,6)
  11. print("--------------")
  12. sleep(1)
  13. term.setCursorPos(19,7)
  14. print("--------------")
  15. sleep(1)
  16. term.setCursorPos(19,8)
  17. print("NeoOS Enabled!")
  18. sleep(1)
  19. term.setCursorPos(19,9)
  20. print("--------------")
  21. sleep(1)
  22. term.setCursorPos(19,10)
  23. print("--------------")
  24. sleep(3)
  25.  
  26. -- Stop Termination
  27. os.pullEvent = os.pullEventRaw
  28. -- Clear Screen
  29. term.clear()
  30. term.setCursorPos(20,8)
  31.  
  32. -- Username
  33. username = "admin"
  34. -- Password
  35. password = "admin"
  36. -- Get User Info
  37. print("LOGIN")
  38. term.setCursorPos(11,9)
  39. write("Username: ")
  40. user = read()
  41. term.setCursorPos(11,10)
  42. write("Password: ")
  43. pass = read("*")
  44. -- Verify
  45. term.setCursorPos(14,11)
  46. textutils.slowPrint("Verifying...")
  47. if (user == username) then
  48.  if (pass == pass) then
  49.    term.setCursorPos(13,12)
  50.    print("Logged In!")
  51.    sleep(1)
  52.    term.clear()
  53.    term.setCursorPos(1,1)
  54.   else
  55.    term.setCursorPos(14,12)
  56.  print("Wrong!")
  57.  sleep(10)
  58.  os.reboot()
  59.  end
  60.  else
  61.  term.setCursorPos(14,12)
  62.  print("Wrong!")
  63.  sleep(10)
  64.  os.reboot()
  65. end
  66. term.clear()
  67. term.setCursorPos(20,1)
  68. print("NeoOS")
  69. term.setCursorPos(1,2)
Advertisement
Add Comment
Please, Sign In to add comment