Introduction to permissions


Introduction

In this tutorial, we will cover the basics of Craftbukkit (this also applies to Spigot servers) permission system, permission nodes, and permission plugins. By using Craftbukkit permissions, you can allow groups and players access to specified commands and other abilities that require 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 be used to allow players to perform different actions such as entering a certain area. For example: permission nodeworldguard.region.bypass.* allow players to bypass WorldGuard protection for regions and permission node essentials.signs.use.buy allows players to use Essentials buy signs.

You can find a list of Craftbukkit permission nodes here: http://wiki.bukkit.org/CraftBukkit_Commands

Plugins have their own permission nodes for commands and different actions, it 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 you to use summary nodes. Summary nodes uses the wildcard “*” to enable all sub-permission nodes. For example:
- worldguard.region.* - Allows access to all permission nodes that starts with worldguard.region.
- essentials.* - Allows access to all permission nodes that starts with essentials.
- ‘*’ - Allows access to all permission nodes.

Permission plugin
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 setup 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
  • 5 Користувачі, які знайшли це корисним
Ця відповідь Вам допомогла?

Схожі статті

How to install Sponge plugins

If you have a Forge 1.8+ server and you would like to install Sponge plugin on your server, you...

How to Install Craftbukkit/Spigot Minecraft Plugins

A guide on installing most Bukkit Minecraft plugins.To install plugins on your server you need to...

How to Set Up DynMap

How to set up a Dynmap so you can view your server on a map.This guide assumes you have installed...

Recommended Minecraft Plugins

Although there are recommended maximums for how many plugins you can run on each server plan,...

Updating Plugins

Updating plugins can be relatively simple depending on the plugin. You will want to do the...