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.

Escalating automod punishments

This example allows users to trigger the `some_infraction` automod rule 3 times. On the 4th time, they are automatically muted.

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.

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.

Auto-disable antiraid

This example disables antiraid after a specific delay.