Posted 25 April 2017 - 03:00 PM
So, today uploading a script of program that i maked by 3 minutes. The sense of program(how you can call it, "test") is to count to 0 and close the program. Here the script go:
local count = 100
while true do
term.clear()
term.setCursorPos(1,1)
print(count)
count = count-1
sleep(0.5)
if count <= 1 then
break
end
end
Maybe will help. Also the part of script can be used in API. :D