Counters
Counters are an advanced feature in Zeppelin that allows you keep track of per-user, per-channel, or global numbers and trigger specific actions based on this number.
Common use cases are infraction points, XP systems, activity roles, and so on.
This guide will be expanded in the future. For now, it contains examples of common counter use cases.
Also see the documentation for the Counters plugin.
Examples
Infraction points
In this example, warns, mutes, and kicks all accumulate "infraction points" for a user.
When the user reaches too many points, they are automatically banned.
plugins:
counters:
config:
counters:
infraction_points:
per_user: true
triggers:
autoban:
condition: ">=50"
decay:
amount: 1
every: 24h
automod:
config:
rules:
add_infraction_points_on_warn:
triggers:
- warn: {}
actions:
add_to_counter:
counter: "infraction_points"
amount: 10
add_infraction_points_on_mute:
triggers:
- mute: {}
actions:
add_to_counter:
counter: "infraction_points"
amount: 20
add_infraction_points_on_kick:
triggers:
- kick: {}
actions:
add_to_counter:
counter: "infraction_points"
amount: 40
autoban_on_too_many_infraction_points:
triggers:
- counter_trigger:
counter: "infraction_points"
trigger: "autoban"
actions:
ban:
reason: "Too many infraction points"
Escalating automod punishments
This example allows users to trigger the `some_infraction` automod rule 3 times. On the 4th time, they are automatically muted.
plugins:
counters:
config:
counters:
automod_infractions:
per_user: true
triggers:
too_many_infractions:
condition: ">=100"
decay:
amount: 100
every: 1h
automod:
config:
rules:
some_infraction:
triggers:
- match_words:
words: ['poopoo head']
actions:
clean: true
reply: 'Do not insult other users'
add_to_counter:
counter: "automod_infractions"
amount: 25
automute_on_too_many_infractions:
triggers:
- counter_trigger:
counter: "automod_infractions"
trigger: "too_many_infractions"
actions:
mute:
reason: "You have been muted for tripping too many automod filters"
remove_roles_on_mute: true
restore_roles_on_mute: true
Simple XP system
This example creates an XP system where every message sent grants you 1 XP, max once per minute.
At 100, 250, 500, and 1000 XP the system grants the user a new role.
plugins:
counters:
config:
counters:
xp:
per_user: true
triggers:
role_1:
condition: ">=100"
role_2:
condition: ">=250"
role_3:
condition: ">=500"
role_4:
condition: ">=1000"
automod:
config:
rules:
accumulate_xp:
triggers:
- any_message: {}
actions:
log: false
add_to_counter:
counter: "xp"
amount: 1
cooldown: 1m
add_xp_role_1:
triggers:
- counter_trigger:
counter: "xp"
trigger: "role_1"
actions:
add_roles: ["123456789123456789"]
add_xp_role_2:
triggers:
- counter_trigger:
counter: "xp"
trigger: "role_2"
actions:
add_roles: ["123456789123456789"]
add_xp_role_3:
triggers:
- counter_trigger:
counter: "xp"
trigger: "role_3"
actions:
add_roles: ["123456789123456789"]
add_xp_role_4:
triggers:
- counter_trigger:
counter: "xp"
trigger: "role_4"
actions:
add_roles: ["123456789123456789"]
Activity role ("regular role")
This example is similar to the XP system, but the number decays and the role granted by the system can be removed if the user's activity goes down.
plugins:
counters:
config:
counters:
activity:
per_user: true
triggers:
grant_role:
condition: ">=100"
reverse_condition: "<50"
decay:
amount: 1
every: 1h
automod:
config:
rules:
accumulate_activity:
triggers:
- any_message: {}
actions:
log: false
add_to_counter:
counter: "activity"
amount: 1
cooldown: 1m
grant_activity_role:
triggers:
- counter_trigger:
counter: "activity"
trigger: "grant_role"
actions:
add_roles: ["123456789123456789"]
remove_activity_role:
triggers:
- counter_trigger:
counter: "activity"
trigger: "grant_role"
reverse: true
actions:
remove_roles: ["123456789123456789"]
Auto-disable antiraid
This example disables antiraid after a specific delay.
plugins:
counters:
config:
counters:
antiraid_decay:
triggers:
disable:
condition: "=0"
decay:
amount: 1
every: 1m
automod:
config:
rules:
start_antiraid_timer_low:
triggers:
- antiraid_level:
level: "low"
actions:
set_counter:
counter: "antiraid_decay"
value: 10
start_antiraid_timer_high:
triggers:
- antiraid_level:
level: "high"
actions:
set_counter:
counter: "antiraid_decay"
value: 20
disable_antiraid_after_timer:
triggers:
- counter_trigger:
counter: "antiraid_decay"
trigger: "disable"
actions:
set_antiraid_level: null