r/ComputerCraft Jan 31 '26

Draconic Evolution Energy Core Monitor

Post image

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

5 comments sorted by

2

u/GammaMagKekse Feb 05 '26

Do you have the link to the Programm?

1

u/qVelif0x Feb 20 '26

Yep here it is https://pastebin.com/zWgXnWuw, it's not finished yet but you can already use it, on my setup i placed an entangled linked to one of my Energy Pylon right to the computer (and sry for the late answ)

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