Sprinricco

Untitled

Feb 1st, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. while true do
  2.  
  3. term.clear()
  4. term.setCursorPos(1, 1)
  5. print("Choose floor") -- Start up message
  6. print("[1]") -- Change "Destination 1" to the name of your first destination
  7. print("[2]") -- Change "Destination 2" to the name of your second destination
  8. input = read()
  9. if input == "1" then
  10. redstone.setBundledOutput("back", colors.black)
  11. redstone.setBundledOutput("back", colors.red)
  12. sleep(2)
  13. redstone.setBundledOutput("back", 0)
  14. end
  15. if input == "2" then
  16. redstone.setBundledOutput("back", colors.white)
  17. redstone.setBundledOutput("back", colors.red)
  18. sleep(2)
  19. redstone.setBundledOutput("back", 0)
  20. end
  21. end
  22.  
  23.  
  24. -- Made by Sprinricco 2013
Advertisement
Add Comment
Please, Sign In to add comment