Code here:
function border2()
term.setCursorPos(1,1)
write("+")
for 2,mX - 1 do
term.setCursorPos(mX,1)
write("-")
end
term.setCursorPos(mX,1)
write("+")
end
I do know to usemX, mY = term.getSize()to actually define the variables I used. I also want this scheme to wrap around the entire screen. Like this:
+--------+ | | | | +--------+











