• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

os.time()

hugq

Member
Joined
Mar 17, 2010
Messages
166
Reaction score
9
Hello guys, I have small problem with os.time and os.difftime:

Code:
t = os.time()
for i = 1, 20 do
wait(1000)
print(os.date("%X", os.difftime(os.time(), t)))
end

print function counts from 01:00:00 (from 1 hour up.), how to make that counts time from 00:00:00?
 
Back
Top Bottom