Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Hi Dan! Fantastic tool - thanks so much for making it! =)

Quick question: How would I go about obtaining the rank int of just the newly uploaded entry? I've been racking my brain trying to figure it out and downloaded the demo, but haven't been able to come up with a solution.

(+1)

Think I finally got it actually! Posting below in case anyone else wants to know! (Or in case I goofed and someone wants to correct me lol)

public void RequestRank(string userName)

{

    var query = LeaderboardSearchQuery.ByUsername(userName);

    LeaderboardCreator.GetLeaderboard(publicLeaderboardKey, false, query, (rankData) =>

    {

        rank = rankData.Rank;

    });

}