Advertisement
Guest User

use2

a guest
Apr 13th, 2012
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. yes = "Yes"
  5. no = "No"
  6. sleep(.1)
  7.  
  8. print("Would you like to turn off the lights?")
  9.  
  10. input = read()
  11.  
  12. if input == (yes) then
  13. print("Turning off the lights!")
  14. sleep(3)
  15. redstone.setOutput("back", false )
  16. os.shutdown()
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement