xXm0dzXx

server

Nov 24th, 2012
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local mon = peripheral.wrap("back")
  2. term.redirect( mon )
  3. local x,y = term.getSize()
  4. while true do
  5. for i=1,300 do
  6. term.setCursorPos( math.random( x ), math.random( y ) )
  7. term.setTextColor(2^math.random(1, 16)/2)
  8. term.setBackgroundColor(2^math.random(1, 16)/2)
  9. write(math.random(1,9))
  10. end
  11. sleep(0)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment