ComputerCraft Program

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Kozem

New Member
Jul 29, 2019
3
0
0
Hey Guise,
Trying to write a program in front of my base that will say something like VIP Base/Club
I have 32 advanced monitors and a advanced computer (I like mouse support :D)
I've written different programs before and am nowhere new to FTB, but this program is really bugging me.
I'd prefer some silly yellow text and background color of some sort, but here is what I tried to write:

local monitor = peripheral.wrap("top")
monitor.clear()
monitor.setTextScale(5)
term.setCursorPos(3,3)
monitor.setTextColor(colors.yellow)
monitor.setBackgroundColor(colors.red)
monitor.write("VIP CLUB")

Thanks :3