Advertisement
Guest User

Untitled

a guest
Jun 27th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1.  
  2. shell.run("clear")
  3. sleep(1.5)
  4. yes = "yes"
  5. no = "no"
  6. user = "test"
  7. pass = "test"
  8. print "Whatever you want your program to be called here!"
  9. sleep(2)
  10. print "Information on your program here!"
  11. sleep(2)
  12. print "help or anything?"
  13. sleep(3)
  14. shell.run("clear")
  15. print "yes or no answer only!"
  16. write "Are You A Member?: "
  17. input = read() //DONT EDIT
  18. if yes == input then //DONT EDIT
  19. print "Oh So You Are!"
  20. shell.run("clear")
  21. sleep(1.5)
  22. print "Insert Username!"
  23. write "Username: " //DONT EDIT
  24. input = read()
  25. if user == input then //DONT EDIT
  26. sleep(3)
  27. print "Epic!"
  28. shell.run("clear")
  29. print "Now Insert Password!" //DONT EDIT
  30. write "Password: " //DONT EDIT
  31. input = read("*")
  32. if pass == input then //DONT EDIT
  33. redstone.setOutput("back", true)
  34. sleep(25)
  35. redstone.setOutput("back", false)
  36. if no == input then
  37. print "Computer will now sleep for awhile!"
  38. os.reboot()
  39. end
  40. end
  41. end
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement