Count
Count variables store named counters that commands can read, increase, decrease, or reset. Use them for deaths, wins, attempts, rounds, or any other number your chat tracks.
Examples
Section titled “Examples”Variables
Section titled “Variables”| Variable | Use | Example output |
|---|---|---|
{count <counter_name>} | Shows the current value for a counter. | 6 |
{count.inc <counter_name> [-/+amount]} | Changes the counter by the amount. Defaults to 1; use a negative amount to decrease it. | 7 |
{count.set <counter_name> [amount]} | Sets the counter to an exact value. Use 0 to reset it. | 4 |
The amount can be provided in the variable or passed in when the command is used.