Hi, i followed the sample project to implement the dreamlo plugin and have a highscore table in my game, it says that i can have until 1000 scores and it is real, but the example retrieves only until 100 scores, how i can get more scores from the leadersboard?
This is the example:
https://github.com/scottrules44/Dreamlo-example
its been a while , but you would have to cycle through
dreamlo.getScores({ending = 100}, handleScore) returns 100 - 200
dreamlo.getScores({ending = 200}, handleScore) returns 200 - 300
etc
Thanks, i solved… however
it wil be:
dreamlo.getScores({amount = 100, ending = 100}, handleScore) returns 100 - 200
because without ‘amount’ it gives error.