Leaderboards.GetNearbyValues(string leaderboardId, number numValues, User user, function callback) | None | Gets nearby leaderboard values on the specified leaderboard for the specified user, centered on the user where possible. Results are returned as a parameter to the callback function. Callback function parameter is a table of results, each result contains name, score, rank & icon. May return cached results if used frequently | None |
Leaderboards.GetTopValues(string leaderboardId, number numValues, function callback) | None | Gets the top ranking values from the specified leaderboard. Results are returned as a parameter to the callback function. Callback function parameter is a table of results, each result contains name, score, rank & icon. May return cached results if used frequently | None |
Leaderboards.GetMetadata(function callback) | None | See Leaderboards.GetAllMetadata Gets the metadata of every leaderboard associated with this game. Results are as a parameter to the callback function. Callback function parameter is a table of results, each result contains id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | Deprecated |
Leaderboards.GetMetadata(string leaderboardId, function callback) | None | Gets the metadata of a single named leaderboard for this game. Results are as a parameter to the callback function. Callback function parameter is a table containing id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | None |
Leaderboards.GetAllMetadata(function callback) | None | Gets the metadata of every leaderboard associated with this game. Results are as a parameter to the callback function. Callback function parameter is a table of results, each result contains id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | None |
Leaderboards.GetNearbyValuesForGame(string gameId, string leaderboardId, number numValues, User user, function callback) | None | Gets the top ranking values for the specified GameId Results are returned as a parameter to the callback function. Callback function parameter is a table of results, each result contains name, score, rank & icon. May return cached results if used frequently | None |
Leaderboards.GetTopValuesForGame(string gameId, string leaderboardId, number numValues, User user, function callback) | None | Gets the top ranking values for the specified GameId Results are returned as a parameter to the callback function. Callback function parameter is a table of results, each result contains name, score, rank & icon. May return cached results if used frequently. | None |
Leaderboards.GetMetadataForGame(string gameId, function callback) | None | See Leaderboards.GetAllMetadataForGame Gets the metadata of every leaderboard associated with the specified GameId. Results are as a parameter to the callback function. Callback function parameter is a table of results, each result contains id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | Deprecated |
Leaderboards.GetMetadataForGame(string gameId, string leaderboardId, function callback) | None | Gets the metadata of a single named leaderboard associated with the specified GameId. Results are as a parameter to the callback function. Callback function parameter is a table containing id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | None |
GetAllMetadataForGame(string gameId, function callback) | None | Gets the metadata of every leaderboard associated with the specified GameId. Results are as a parameter to the callback function. Callback function parameter is a table of results, each result contains id, displayName, displayIndex, resetTime, isPeriodic, isAscending & scoreType | None |