Advertisement
Guest User

ComputerCraft

a guest
Mar 23rd, 2013
1,764
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local monitor = peripheral.wrap('Change to side monitors on')
  2. term.redirect( monitor )
  3. monitor.setTextScale( <Change size> )
  4. local w, h = term.getSize()
  5. local function center(text)
  6.     x, y = term.getCursorPos()
  7.     term.setCursorPos((w/2)-#text/2, y)
  8.     print(text)
  9. end
  10. center("Write text here")
  11.  
  12. term.restore()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement