Posted 02 April 2016 - 11:25 AM
Is there a way to do textutils,slowWrite() on a monitor?
monitor = periphheral.wrap(side)
oldTerm = term.redirect(monitor)
where side is the side of your monitor. Or to save on memory
oldTerm = term.redirect(peripheral.wrap(side))
If you do either of these, just typing textutils.slowWrite(text) will print it on the monitor. If you want to be able to use the computers terminal again, you can redirec to the oldTerm table.