$userLeaderboard
Creates a leaderboard of users in the server, for the specified variable.
Usage
$userLeaderboard[variableName;sortType (asc/desc);customText;(optional) separator;(optional) page;(optional) limit]
Breakdown
variableName
- The name of the variable to create the leaderboard for.
sortType
- Whether to sort the leaderboard in ascending (asc
) or descending (desc
) order.
customText
- What to display for each new placement on the leaderboard. (view all leaderboard properties)
Example: $data[position] | $data[tag] - $data[value]
Output: 1 | User#0000 - 100
separator
- The separator between placements. Default is \n
(new line). Optional.
page
- Which page to display. Default is first page (1
). Optional.
limit
- How many placements to display on each page
. Default is 10
. Optional.
Example
bot.command({
type: "command",
name: "leaderboard",
code: `$description[$userLeaderboard[Money;asc;$data[position] | $data[tag] - $data[value]]
]`
})
Last updated
Was this helpful?