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

HELP WANTED! Monitors..

Started by TheCursed_Donkey, 23 June 2012 - 09:52 AM
TheCursed_Donkey #1
Posted 23 June 2012 - 11:52 AM
Soo. lets say that i have this problem…
I have almost build a castle, and i have monitors at the enterance, but U will have 2 go all up closely too see it, and by the time UR there my defence system has kill'd them >:] anyway i can make the monitor writing more
big? (and awesome) :P/>/>
Any API for that?
Kolpa #2
Posted 23 June 2012 - 12:22 PM
u need to wrap the monitor with peripheral.wrap like this:

monipos = "top"
scale =3 --size from 1-5
text = "WARNING HERE"
local moni = peripheral.wrap(monipos)
moni.setTextScale(scale)
moni.write(text)
something like that i didn't test it so there may be some spelling errors