9 posts
Posted 31 December 2012 - 05:34 AM
… can somone come up with a code for … when i run it it will automatically put it on a monitor to the right
11 posts
Location
Poland
Posted 31 December 2012 - 06:59 AM
shell.run("monitor", "right", "yourprogram")
--or
peripheral.call("right", "yourprogram")
Or if you want the program to start directly on the monitor you can do like this:
local monitor = peripheral.wrap("right")
--For example use monitor.write() instead of print()
monitor.write("Hello world!")
Just do like this, the rest of monitor peripheral functions you can find on
wiki under the peripheral functions section, just use them.
31 posts
Location
Portugal
Posted 31 December 2012 - 07:07 AM
8543 posts
Posted 31 December 2012 - 12:14 PM
Moved to Ask a Pro.
9 posts
Posted 31 December 2012 - 12:41 PM
i got it thanks guys for the help i took tbe 1st doods thang