Created
October 26, 2013 00:49
-
-
Save CoderPuppy/7163979 to your computer and use it in GitHub Desktop.
Stuff for PirateAE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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