Skip to main content
Corvus Connection

Add a cooldown to a trigger

Stop a command or event from firing too often with a global or per-user cooldown.

A popular command can flood chat if everyone runs it at once. Cooldowns space it out.

The recipe

  • Global cooldown: set cooldown seconds so the command runs at most once every N seconds for the whole channel.
  • Per-user cooldown: set per-user cooldown seconds so each viewer waits between their own uses.

Both live on the trigger itself, so no extra nodes are needed. Combine with a role gate for tighter control. See On Chat Command.

Related nodes