Guest User

Untitled

a guest
Nov 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. os.pullEvent = os.pullEventRaw
  2. term.clear()
  3. term.setCursorPos(1,1)
  4. print("WarPlex Computer Security 1.0")
  5. print("UserName: admin") -- Change UserName line 20 and Here
  6. write("Password: ")
  7. function pass()
  8. t = io.read()
  9. if t == "admin" then -- Change Password Here
  10. print ("Access Granted.")
  11. sleep(2)
  12. term.clear()
  13. term.setCursorPos(1,1)
  14. textutils.slowPrint("Welcome to WarPlexOS v1.0")
  15. else
  16. print ("Incorrect Login Details.")
  17. sleep(1)
  18. term.clear()
  19. term.setCursorPos(1,1)
  20. print("WarPlex Computer Security 1.0")
  21. print("UserName: admin") -- Line 20
  22. write("Password: ")
  23. pass()
  24. end
  25. end
  26. pass()
Add Comment
Please, Sign In to add comment