biodude100

Computercraft monitor display

Jun 6th, 2014 (edited)
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. m=peripheral.wrap("right")
  2.  
  3. m.setBackgroundColor(colors.black)
  4.  
  5. m.clear()
  6.  
  7. function wt(x,y,t,c)
  8. m.setBackgroundColor(c) --use {colors.black} for c
  9. m.setCursorPos(x,y)
  10. m.write(t) --use {"your text here"} for t
  11. end
Add Comment
Please, Sign In to add comment