OpenFeint leaderboards only accept integers

I don’t know if this is a corona issue or OpenFeint but I cannot post a score with decimal numbers. say 1.4 shows up as 1. [import]uid: 8192 topic_id: 4039 reply_id: 304039[/import]

This is how OpenFeint works, not so much Corona. The workaround is to send an integer without the decimal place, and then submit a descriptor/string with the decimal place which will show in place of the score.

[lua]myscore = 100.234
myscoresort = myscore * 1000

openfeint.setHighScore( { leaderboardID=ID, score=myscoresort , displayText=myscore } )[/lua]

Untested, so I don’t know if you have to format for string, but give it a shot. [import]uid: 11024 topic_id: 4039 reply_id: 12375[/import]

Thank you very much. Works like a charm. [import]uid: 8192 topic_id: 4039 reply_id: 12600[/import]