displaying time with hrs:mins:secs and decimal points

Hey everyone thanks to an old thread by @gyroscope I was able to get my game time displayed in hrs:mins:secs, however I need it to display with two decimal points also showing tenths and hundredths of a second: "0:00:00.00"
Any math geniuses able to help? I've been trying to figure it out.

Here is what I have for hrs:min:secs:

floor( self.time /3600)..":"..floor(floor(( self.time %3600)/60)/10)..floor((floor( self.time %3600)/60)%10)..":"..floor(( self.time %60)/10)..floor( self.time %10)

Comments

Sign In or Register to comment.