Posted 15 May 2016 - 11:37 PM
Hello,
I am a very novice with computercraft and I'd like to display a .txt from an external link on a monitor but I don't know what to use.
What's more, I'd like to know why doesn't this code work?
Thank you
I am a very novice with computercraft and I'd like to display a .txt from an external link on a monitor but I don't know what to use.
What's more, I'd like to know why doesn't this code work?
local monitor = peripheral.wrap("right")
local txt = "Hello"
monitor.SetCursorPos(1,1)
monitor.write(txt)
Thank you