Leaderboard seems to be resetting daily (it's not)
J
John Darnell
started a topic
over 4 years ago
I posted a ticket but have just read it may be ignored for a few days as they would like this sort of issue posted here.
Only today's events are being returned from LeaderboardDataRequest(s), (the reset on the leaderboards is set to weekly).
When I look via the Test harness, all the high scores are there, but both AroundMeLeaderboardRequest and LeaderboardDataRequest only return today's scores.
I've clearly misunderstood something. Any help would be appreciated.
John Darnell
I posted a ticket but have just read it may be ignored for a few days as they would like this sort of issue posted here.
Only today's events are being returned from LeaderboardDataRequest(s), (the reset on the leaderboards is set to weekly).
When I look via the Test harness, all the high scores are there, but both AroundMeLeaderboardRequest and LeaderboardDataRequest only return today's scores.
I've clearly misunderstood something. Any help would be appreciated.
Test Harness (returns all entries):
{ "@class": ".LeaderboardDataRequest", "dontErrorOnNotSocial": false,
"entryCount": 10,
"friendIds": [ "" ],
"includeFirst": 0,
"includeLast": 0,
"inverseSocial": false,
"leaderboardShortCode": "CountryxLevelxTime.CountryCode.AU.LevelNum.3", "offset": 0,
"social": false,
"teamIds": [ "" ],
"teamTypes": [ "" ] }
new LeaderboardDataRequest() .SetEntryCount(10)
.SetOffset(0)
.SetIncludeFirst(1)
.SetIncludeLast(1)
.SetLeaderboardShortCode("CountryxLevelxTime.CountryCode.AU.LevelNum.3") .Send((response) => {
When I look at the console, only today's results are there.
Any ideas?