Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. local monitor = peripheral.find("monitor", function(name, object) return object.isColour() end)
  2.  
  3. if monitor then
  4. monitor.clear()
  5. term.clear()
  6. term.write("What should be voted on?\n")
  7. local issue = read()
  8. monitor.setCursorBlink(false)
  9. monitor.write("Issue at hand:" .. issue)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement