3
I would like to take the time (HH:MM:SS) per millisecond.
Ex: 86400000
Would be: 24:00:00
since it is the equivalent of a day.
3
I would like to take the time (HH:MM:SS) per millisecond.
Ex: 86400000
Would be: 24:00:00
since it is the equivalent of a day.
3
As far as I know is not possible directly on Lua. The closest you could get is to use the os.clock()
but the accuracy is less. However I can suggest some options:
socket.gettime() * 1000
.Browser other questions tagged lua time
You are not signed in. Login or sign up in order to post.
Is given
86400000
and you want to24:00:00
or vice versa?– lhf