storing high scores with openfeint

How do I set high scores with openfeint, I’ve set up everything with openfeint and app is approved, Im trying to test the leaderboard and scoring but no scoring is being recorded for my test user.

It has to be something that I need to place on my results.lua page

Ive tried this

[code]openfeint.setHighScore( { leaderboardID=“667376”, score=“finalscore”, displayText=“777 pts” } )

but I know there has to be more to it.

basically I want the final score to post to the openfeint leaderboard, but Im not sure how to make it happen.

ANy help is great! :wink: [import]uid: 3715 topic_id: 7688 reply_id: 307688[/import]

You are not doing this correctly. The score needs to be a number, and the display text needs to be your formatting.

For instance:

openfeint.setHighScore( { leaderboardID="667376", score=777, displayText="777 pts" }  

or

openfeint.setHighScore( { leaderboardID="667376", score=77777, displayText="77,777 pts" }  

[import]uid: 36054 topic_id: 7688 reply_id: 27540[/import]

Thanks blasterv – you are the man! I was having trouble understanding it, but now I get it.

[import]uid: 3715 topic_id: 7688 reply_id: 27555[/import]