Skip to content

Instantly share code, notes, and snippets.

@CoderPuppy
Created October 26, 2013 00:49
Show Gist options
  • Save CoderPuppy/7163979 to your computer and use it in GitHub Desktop.
Save CoderPuppy/7163979 to your computer and use it in GitHub Desktop.
Stuff for PirateAE
local monitor = peripheral.wrap('back') -- Open the monitor
term.redirect(monitor) -- Start sending stuff to the monitor
term.setCursorPos(1, 1) -- Chooses where to write text
term.write('Top Line') -- Writes text
term.setCursorPos(1, 2) -- Chooses where to write text
term.write('Bottom Line') -- Writes text
term.restore()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment