$commandCount

Returns total command count or amount of certain type(s) of commands.

Usages

Usage #1

$commandCount
// Returns the total command count.

Usage #2

$commandCount[types]
// Replace 'types' with a real command type.
// If you want to include multiple types, you can by separating them with ;

Click-me to view a list of all command types.

Example

bot.command({
    type: "command", 
    name: "command-count",
    code: `I have $commandCount commands!`
})

Last updated

Was this helpful?