Advertisement
Guest User

Untitled

a guest
Sep 29th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. local mon = peripheral.wrap("top")
  2. local bx,by = mon.getSize()
  3. while true do
  4. local event = os.pullEvent(char)
  5. if event == "char" then
  6. mon.clear()
  7. term.clear()
  8. term.setCursorPos(1,1)
  9. break
  10. end
  11. local x = math.random(1,bx)
  12. local y = math.random(1,by)
  13. mon.setCursorPos(x,y)
  14. mon.write("o")
  15. sleep(2)
  16. mon.clear()
  17. sleep(2)
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement