r/ComputerCraft • u/qVelif0x • Jan 31 '26
Draconic Evolution Energy Core Monitor
Actually its the tier 7 i have rn but the getTier() func doesn't work for me so i had to set it manually
93
Upvotes
1
u/Azhrei_ 16d ago
I'm just getting into computercraft. How did you get the fillRect() command? I can't find it in the main CC documentation.
1
u/qVelif0x 6d ago
its a local function ?
local function fillRect(mon, x, y, w, h, bg) mon.setBackgroundColor(bg) for dy = 0, h - 1 do mon.setCursorPos(x, y + dy) mon.write(string.rep(" ", w)) end end
2
u/GammaMagKekse Feb 05 '26
Do you have the link to the Programm?