Setting up permissions properly

Plugins & Mods Reviewed September 6, 2026 2 min read

Operator is all-or-nothing: it grants every command in the game and every plugin command with it. A permissions plugin exists so you can say «this person can kick, and nothing else», which is what you actually want almost every time.

Operator overrides most permission checks

Giving someone op and then trying to restrict them with a permissions plugin usually does not work — many plugins treat op as an automatic yes. If you are managing permissions properly, your staff should not be operators at all. Op belongs to the console and to you.

A structure that scales

  1. Build groups, not individuals

    default, trusted, mod, admin. Assigning a person to a group takes one command; changing what forty individuals can do takes forty.

  2. Use inheritance

    mod inherits everything trusted has, plus its own. You then only ever describe the difference, which is where mistakes stop happening.

  3. Grant nodes, not wildcards

    essentials.kick is a permission. essentials.* is every command that plugin will ever have, including ones added in a future update you have not read about.

  4. Test by joining as a normal player

    An alt account in the default group is the only reliable way to see what a new player actually sees. Checking from your own account tells you nothing.

A sensible starting shape

GroupGets
defaultBasic commands: spawn, home, tpa, msg.
trustedDefault plus larger claims, colour in chat, more homes.
modTrusted plus kick, mute, tempban, teleport to players.
adminMod plus ban, region editing, plugin management.
Write down why each permission was granted

Most permissions plugins support a comment or a description. In six months, «why can trusted do this?» is a question you will ask about your own configuration, and the answer will not be in your head.

How to confirm it worked

A test account in default can use the basics and gets a clear denial for anything above it.