Skip to content

Permissions

Maxime Tonie edited this page Apr 11, 2026 · 1 revision

Permissions

Admin permissions

Permission Default Description
packettrigger.admin op Grants all sub-permissions below
packettrigger.reload op Use /pt reload, /pt toggle, /pt resetstats, /pt clearcooldowns
packettrigger.list op Use /pt list and /pt stats
packettrigger.test op Use /pt test
packettrigger.debug op Use /pt debug

Per-trigger permissions

You can require players to have a specific permission for any trigger to fire. Set it in the trigger config:

triggers:
  vip-reward:
    placeholder: "$vip"
    delimiter: "!"
    permission: "myserver.vip"
    actions:
      - type: SEND_MESSAGE
        message: "&6VIP reward received!"

If a player doesn't have myserver.vip, the packet is still cancelled but no actions run and no cooldown is set. You can use any permission string — PacketTrigger doesn't register them, it just checks if the player has them via Bukkit's permission system.

Clone this wiki locally