yutaponabe

minecraft ComputerCraft teleport

Feb 27th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. --seting pass--
  2. pass = ("1234")
  3.  
  4.  
  5. print("Enter password.")
  6. a = read()
  7. if a == pass then
  8. print("Password correct!")
  9. rs.setOutput("bottom", true)
  10. sleep(1)
  11. rs.setOutput("bottom", false)
  12. else
  13. print("Password incorrect!")
  14. rs.setOutput("left", false)
  15. sleep(1)
  16. rs.setOutput("left", true)
  17.  
  18. end
Advertisement
Add Comment
Please, Sign In to add comment