An Introduction to CraftBukkit/Spigot Permissions

Overview
This tutorial will cover the basics of Craftbukkit (this also applies to Spigot servers), permission systems, permission nodes, and permission plugins. Using Craftbukkit permissions, you can allow groups and players access to specified commands and other abilities requiring permissions.

Permission Nodes
-By default, players do not have access to most commands on the server, you can grant players Minecraft OP status, but it is not ideal for most servers because it will grant the player access to all commands on the server. As a replacement for Minecraft OP, Craftbukkit has a permission system that is implemented by most plugins.

-Permission Nodes are a method of defining what commands/abilities a player can perform on the server. Different permission nodes are assigned to different commands and actions by the plugin developer. For example, permission node bukkit.command.kick allows a player to use Craftbukkit /kick command.

-Permission nodes can also allow players to perform different actions, such as entering a certain area. For example, permission node worldguard.region.bypass.* allow players to bypass WorldGuard protection for regions and permission node essentials.signs.use.buy allows players to use Essentials buy signs.

-A list of Craftbukkit permission nodes can be found on the Official Bukkit Wiki.

-Plugins have their own permission nodes for commands and different actions, which can typically be found on the plugin pages published by their developers. Permission nodes for plugins will generally use the following format: <plugin>.<command>


Summary Nodes
Most permission plugins will allow the use of Summary Nodes. Summary nodes use the wildcard “*” to enable all sub-permission nodes. For example:
- worldguard.region.* - Allows access to all permission nodes that start with worldguard.region.
- essentials.* - Allows access to all permission nodes that start with essentials.
- ‘*’ - Allows access to all permission nodes.


Permission Plugins
Although Bukkit has a permission system built-in, it does not have a built-in system to manage permissions. There are multiple permission plugins, such as PermissionsEx and GroupManager, that can be used to manage permissions on your server.

GroupManager is one of the easiest permission plugins to set up, as it comes with a pre-made set of groups that will work out of the box for most servers. You can also edit the default groups to work with your server.

If any information you see here is outdated, please let us know by creating a support ticket. Thank you.

  • permissions, Group Manager, PEX, PermissionsEX
  • 7 Users Found This Useful
Was this answer helpful?

Related Articles

How To Install Sponge Plugins on a Minecraft Server

OverviewSponge serves as a versatile mod for Minecraft servers, enabling the installation of both...

How To Install Plugins on a Craftbukkit/Spigot/Paper Minecraft Server

OverviewPlugins are pivotal in enhancing the gameplay experience on Craftbukkit, Spigot, and...

How to Set Up DynMap

OverviewThe Minecraft plugin Dynmap is used to view a live map of the Minecraft server world....

Recommended Minecraft Plugins

OverviewAlthough there are recommended maximums for how many plugins can be run on each server...

How to Update Plugins on a Minecraft Server

OverviewPlugins on Minecraft servers generally go out of date with large game version updates to...