function _G.term.setCursorPos(x, y)
oldtermsetcursorpos(x, y+1)
end
function _G.term.getSize()
local x, y = oldtermgetsize()
return x, (y-1)
end
function _G.term.getCursorPos()
local x, y = oldtermgetcursorpos()
return x, (y+1)
end
But, then it results in this:[attachment=2417:screenshot (2).png]
It normally looks like this:
[attachment=2418:screenshot (3).png]
Am I missing a function that would need to be replaced as well?
NOTE: I am showing this with the Northbridge Terminal OS rather than CraftOS because CraftOS with these modifications doesn't work properly in Mimic at least. It doesn't print anything then. I am currently using Mimic for testing as I am on my Chromebook at this moment.