14 posts
Posted 24 March 2013 - 03:48 PM
How do I make this automatically start
http://pastebin.com/pZnrkNpL
7508 posts
Location
Australia
Posted 24 March 2013 - 03:50 PM
put it in a file called startup on the computer.
14 posts
Posted 24 March 2013 - 04:12 PM
Its on a server and i dont know how to
7508 posts
Location
Australia
Posted 24 March 2013 - 04:13 PM
type this into the computer.
pastebin get pZnrkNpL startup
14 posts
Posted 24 March 2013 - 04:19 PM
OK so how do i get it to show up on the screen above it
7508 posts
Location
Australia
Posted 24 March 2013 - 04:22 PM
add this to the
very top of the code
local monitor = peripheral.wrap('top')
term.redirect( monitor )
this tells the terminal that now everytime you use '
term.' you want it to go to the monitor
then at the
very bottom of the code
term.restore()
this tells the terminal that everything should now be printed back on the normal terminal screen.
14 posts
Posted 24 March 2013 - 04:39 PM
how do i change the size of the font? please
7508 posts
Location
Australia
Posted 24 March 2013 - 04:53 PM
after the code i told you to add to the start do this
monitor.setTextScale( <num> )
where <num> is a number from 0.5 to 5 (iirc)
14 posts
Posted 25 March 2013 - 04:18 AM
thank you