Posted 18 August 2012 - 07:01 PM
Hello again friends, I'm here another day to show you guys more of a program 'Rednet Works', Constant Clock, the
Constant Clock aims to to instead of you having to stay when you want to see the time, is so you throw it on a computer just for him, and presto, he had been like a real digital clock!
I apologize again for my bad english, I'm still using the google translator!
donwload:
http://pastebin.com/LeuuGU77 - Constant-Clock
or copy the code:
by Rednet Works
Constant Clock aims to to instead of you having to stay when you want to see the time, is so you throw it on a computer just for him, and presto, he had been like a real digital clock!
I apologize again for my bad english, I'm still using the google translator!
donwload:
http://pastebin.com/LeuuGU77 - Constant-Clock
or copy the code:
function c()
term.clear()
term.setCursorPos(1,1)
end
c()
print("Constant Clock - by Rednet Works")
sleep(2)
c()
function clock()
while true do
sleep(0.003)
nTime = os.time()
print( textutils.formatTime(nTime, false) )
sleep(0.003)
c()
clock()
end
end
clock()
by Rednet Works