This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Amarite1's profile picture

Monitor Error

Started by Amarite1, 12 June 2012 - 01:31 AM
Amarite1 #1
Posted 12 June 2012 - 03:31 AM
Hi all,
I was wondering if i could get some help with the following. I created a terminal with a monitor beside it. From what the wiki says, I should be able to output to that screen using

term.redirect("right")
When I use this, however, I get the following error: bios:32: attempt to call nil. My terminal then proceeds to "brick" and need to be replaced. Any ideas?
Zepher48 #2
Posted 12 June 2012 - 09:25 AM
Try to use this to write to a monitor,

local m = peripheral.wrap("right")
m.write("The text i want to write")
Amarite1 #3
Posted 12 June 2012 - 12:33 PM
Thank you! Works perfectly!