8 posts
Posted 11 April 2015 - 11:26 AM
I cannot work out a command to show what i'm writing on a monitor and on the computer i'm pretty sur it's a really simple command sorry for wasting time
7083 posts
Location
Tasmania (AU)
Posted 11 April 2015 - 11:29 AM
8 posts
Posted 11 April 2015 - 11:31 AM
this is for tekkit classic
7083 posts
Location
Tasmania (AU)
Posted 11 April 2015 - 11:46 AM
Odds are all you'd need to change is the first line; instead of peripheral.find("monitor"), use peripheral.wrap("whatever side your monitor is on").
Eg:
local monitors = {peripheral.wrap("top")}
Or if you've got more than one monitor, you might do:
local monitors = {peripheral.wrap("top"), peripheral.wrap("left")}
15 posts
Location
hm... Im not sure... I guess i am living on the earth? I may be wrong.
Posted 11 April 2015 - 01:55 PM
So for example:
local m = peripheral.wrap("top")
m.print("Test")
3057 posts
Location
United States of America
Posted 11 April 2015 - 04:17 PM
@Mining_Pickaxe not only will that not work, it's not what he was asking for in the first place, and will error rather embarrassingly if you run it.