Advertisement
demonhuntern

monitor check

May 19th, 2014
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local mon = peripheral.wrap("back")
  2. local num = 0
  3. mon.setTextScale(0.5)
  4. while true do
  5. num = num + 1
  6. mon.setCursorPos(1,num)
  7. mon.write(num)
  8. sleep(1)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement