Advertisement
metro80

Mouse Finder

Nov 3rd, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.61 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. print("Position:")
  4.  
  5. function getPos()
  6.   while true do
  7.     event, button, x, y = os.pullEvent("mouse_click")
  8.     term.clear()
  9.     paintutils.drawLine(x, y, x, y, colors.green)
  10.     term.setCursorPos(1,1)
  11.     term.setBackgroundColor(colors.black)
  12.     print("Position: "..x..", "..y)
  13.     term.setCursorPos(1,18)
  14.     print("Press Enter to exit...")
  15.   end
  16. end
  17.  
  18. function exit()
  19.   while true do
  20.     event, key = os.pullEvent("key")
  21.     if key == 28 then
  22.       term.clear()
  23.       term.setCursorPos(1,1)
  24.       error()
  25.     end
  26.   end
  27. end
  28.  
  29. parallel.waitForAny(getPos, exit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement