Hey, and thanks for reading in advance.
I’m helping a buddy out with his lookalike of the classic Outbreak Survival game, and we’re attempting to create a leaderboard that shows the top 20 players sorted by the sum of three statistics, as shown here.
Issue being - ODS entries can only store a single, positive integer for each key, meaning we’d either have to do a feedback loop of using the same key in the ODS to retrieve their data from the normal store and display in the same order the ODS gave us (requiring about 20 async calls at runtime) or create three separate ODS for each statistic, requiring three ordered async calls at runtime, which are equally expensive. Either process is fairly mundane and requires careful ratelimit monitoring, so I’m curious to know if anyone has devised or knows of a better method to achieve the end result we’re after here.
Any help or advice is appreciated.