Add inventory top leaderboard special identifiers #381
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
$top#____ = Top # users by specific item amount. For example, if my inventory is called "Items" and the item I want to check is called "Potion", I would use "$top5itemspotion". (EX: #1) User1 - 10, #2) User2 - 8, #3) User3 - 5)
$top#____total = Top # users by total items in inventory. (EX: $top5itemstotal -> #1) User1 - 45, #2) User2 - 32, #3) User3 - 28)
$top#____unique = Top # users by unique item types owned. (EX: $top5itemsunique -> #1) User1 - 12, #2) User2 - 10, #3) User3 - 8)
$top____user = Get user data of #1 user for specific item. Can be combined with user special identifiers. (EX: $topitemspotionusername -> "User1")
$top____totaluser = Get user data of #1 user by total items. Can be combined with user special identifiers. (EX: $topitemstotalusername -> "User1")
$top____uniqueuser = Get user data of #1 user by unique items. Can be combined with user special identifiers. (EX: $topitemsuniqueusername -> "User1")