41 posts
Posted 30 October 2012 - 02:11 AM
So ive been making a CTF match and im making the score board. And i have arrays coded but i dont know how to make them bigger on the monitor cause i cant make the monitor print the text. so i have to either do shell.run("monitor, "back", "board") or monitor back board. Please help me i just want to make the text bigger.
252 posts
Posted 30 October 2012 - 02:15 AM
Try this:
monitor = peripheral.wrap("side")
monitor.setTextScale("1-5")
monitor.write("Your Stuff") OR term.redirect(monitor)
41 posts
Posted 30 October 2012 - 02:17 AM
its not in a startup file its in a diffrent custom file
252 posts
Posted 30 October 2012 - 02:23 AM
Yeah but just use (name).setTextScale("1-5")
Where the name is defined a a peripheral. Put that code in a file. (Could you show me the code that prints it to the monitor?)
41 posts
Posted 30 October 2012 - 02:30 AM
if you have skype add me thelegacyunlocking we can talk about it in chat not voice though
41 posts
Posted 31 October 2012 - 03:02 AM
please someone help me with this
252 posts
Posted 31 October 2012 - 03:37 AM
please someone help me with this
Add this to the top of your file:
m = peripheral.wrap("back")
m.setTextScale(3)
Tell me if that works
6 posts
Posted 04 November 2012 - 10:19 AM
monitor = peripheral.wrap("side") -- of which the monitor is in comparison to screen
monitor.setTextScale("1 2 3 4 or 5") -- only pick one
monitor.write("What Ever Your text is") OR term.redirect(monitor)