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

I need help with something

Started by CardingiSFun, 30 October 2012 - 01:11 AM
CardingiSFun #1
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.



ChaddJackson12 #2
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)
CardingiSFun #3
Posted 30 October 2012 - 02:17 AM
its not in a startup file its in a diffrent custom file
ChaddJackson12 #4
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?)
CardingiSFun #5
Posted 30 October 2012 - 02:30 AM
if you have skype add me thelegacyunlocking we can talk about it in chat not voice though
CardingiSFun #6
Posted 31 October 2012 - 03:02 AM
please someone help me with this
ChaddJackson12 #7
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
DarkCoder #8
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)