Posted 03 June 2015 - 10:10 AM
So i'm trying to use paintutils.drawPixel(), and everything goes fine untill I use term.clear(), which apparently fills the whole screen with the paintutils pixels. And I habve no ide why it does this, could someone help me??
A copy of my code:
A copy of my code:
function redraw() --The graphics part
term.clear()
paintutils.drawPixel(p1x, p1y, 2048)
paintutils.drawPixel(p2x, p2y, 16384)
term.setTextColor(colors.green)
term.setCursorPos(1, 1)
term.write(timeD)
end