I am now testing the world ranking function with cocos2d.
I found that If I got scores like this:
pos name score
1 aaa 100
2 bbb 50
3 ccc 20
Then I tried to post a new score "ddd 100", the [sender ranking]
in scorePostOk function output "1", and in fact it was:
pos name score
1 ddd 100
2 aaa 100
3 bbb 50
4 ccc 20
I want to know if I post the score that already exists, what decides its
position in the ranking?(And tried several times it seems random to me)
Hope someone can give me some help, thanks in advance...