Posted 18 April 2015 - 10:29 PM
So I have been working on a 15 second timer for a 5x3 monitor, i dont exactly know how to make the text center on the monitor
s = 15
for i=1, 170 do --15s = 15s
term.clear()
term.setCursorPos(1, 1)
print("Time Left: "..s)
sleep(1)
if s == 0 then
s = 15
end
s = s-1
end