Minecraft – Using Permissions bukkit. How to add a player through chat command

minecraft-bukkitminecraft-java-edition

I think it's a bit annoying to open up config.yml for permissions every time I want to add someone to the server. As default, no one has permissions to do anything, they need to be in the user group. Is there a way to do this through the in game console?

Best Answer

You can use the following command to set a player's group with PermissionsBukkit:

/permissions player setgroup <player> <group>

So, this would set a player named Bob to the 'user' group:

/permissions player setgroup Bob user

Just make sure that you have the permissions.player.setgroup permission node set to true. You can also just use permissions.player.* or just permissions.* to get that permission as well.