USMCDefender

TEST NOT MINE ALL CREDIT GOES TO CCJJSax

Nov 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. mon = peripheral.wrap("left") -- string side. change to your side
  2. mon.write("hello world") -- writes at the top left postion.
  3. mon.setCursorPos(5, 5) -- sets monitor cursor to 5, 5
  4. mon.setTextColor(colors.red) -- sets monitor text color to red
  5. mon.setBackgroundColor(colors.black) -- black is default so this wont do anything, but you know how to do it now.
  6. mon.write("Missile Launched")
Add Comment
Please, Sign In to add comment