Hi,
I would like to create a time ranking on google play. But, when I try to submit a time, it doesn’t work…
Here is my code:
myCategory = "the big number......." local minutes = math.floor( myData.results.bestTime / 60 ) local seconds = myData.results.bestTime % 60 local hours = 0 -- make it a string using string format. local timeDisplay = string.format( "%02d:%02d:%02d", hours ,minutes, seconds ) gameNetwork.request( "setHighScore", { localPlayerScore = { category=myCategory, value=timeDisplay }, } )
In my code, myData.results.bestTime is in seconds.
And they say that it should look like “34:17:30”.
Does someone know the format of the time I want to submit on google play rankings?
Thanks in advance