Advertisement
bacon_donut

Very Basic Advanced Monitor

Sep 2nd, 2013
764
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. -- Uses Advanced Monitor blocks and an Advanced Computer.
  2. -- The screen this was made for was five monitors wide
  3. -- by two high. I saved this as startup so it would run at server boot.
  4.  
  5. local m = peripheral.wrap("right")
  6.  
  7. m.setCursorPos(3,2)
  8.  
  9. m.setBackgroundColor(colors.pink)
  10.  
  11. m.setTextColor(colors.blue)
  12.  
  13. m.clear()
  14.  
  15. m.setTextScale(4)
  16.  
  17. m.write("Overworld")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement