[ADMN/DEV] PermissionsBukkit v2.0 - Official Default Groups Plugin [1.5.2-R1.0]

Discussion in 'Archived: Plugin Releases' started by SpaceManiac, Jul 17, 2011.

  1. Offline

    SpaceManiac

    PermissionsBukkit - the Official Default Groups Plugin
    Current Version: v2.0
    Find PermissionsBukkit on BukkitDev!

    If you are getting a specific error or cannot determine what is wrong with your permissions file, filing a ticket on BukkitDev will make me much more likely to respond to you; general questions are best to ask in this thread or on the forums on BukkitDev.

    It's been a long time coming, but with the accomplishment of build 1000 Bukkit has finally accomplished a built-in Permissions system (codenamed Superperms). For more info on how they work, and how to integrate them with your plugin, see the official Permissions FAQ. Keep in mind that you should rarely, if ever, have to hook this plugin directly; instead keep things in the realm of checking player.hasPermission("yourplugin.node"). The FAQ thread has more info on how to use Superperms with things like chat prefixes/suffixes.

    Features:
    • Storage of users and groups in plugins/PermissionsBukkit/config.yml.
    • Both users and groups can be assigned individual permissions and parent groups to inherit permissions from.
    • Support for global and per-world permissions.
    • Reload configuration from file with out reloading the plugin.
    • Ability to check if a player has a specific permission node.
    • Ability to dump all permissions a player has and the plugins that set them.
    • Ability to print plugin, description, and default for a given permission node.
    • Ability to modify the permissions of groups and users and the groups of a user in-game.
    • Built-in antibuild via the "permissions.build" node (defaults to allowing anyone to build).
    • A minimalistic bridge from Permissions 3.0 to Superperms is available as a separate plugin, which does not depend on PermissionsBukkit.
    Command Usage:

    Show Spoiler
    PermissionsBukkit uses the command /permissions, with aliases /perms and /perm.

    /permissions reload - reload the configuration from disk.
    /permissions check <node> [player] - check if a player or the sender has a permission (any plugin).
    /permissions info <node> - prints information on a specific permission.
    /permissions dump [player] [page] - prints info about a player's (or the sender's) permissions.
    /permissions setrank <player> <group> - set a player to be in a group with per-group permissions.
    /permissions group - list group-related commands.
    /permissions group list - list all groups.
    /permissions group players <group> - list players in a group.
    /permissions group setperm <group> <[world:]node> [true|false] - set a permission on a group.
    /permissions group unsetperm <group> <[world:]node> - unset a permission on a group.
    /permissions player - list player-related commands.
    /permissions player groups <player> - list groups a player is in.
    /permissions player setgroup <player> <group,...> - set a player to be in only the given groups.
    /permissions player addgroup <player> <group> - add a player to a group.
    /permissions player removegroup <player> <group> - remove a player from a group.
    /permissions player setperm <player> <[world:]node> [true|false] - set a permission on a player.
    /permissions player unsetperm <player> <[world:]node> - unset a permission on a player.

    All commands have in-game help and are usable from the server console.

    Configuration:
    Show Spoiler
    A permission node is a string like 'permissions.build', usually starting with the name of the plugin. Refer to a plugin's documentation for what permissions it cares about. Each node should be followed by true to grant that permission or false to revoke it, as in 'permissions.build: true'. Some plugins provide permission nodes that map to a group of permissions - for example, PermissionsBukkit has 'permissions.*', which automatically grants permissions for all PermissionsBukkit commands. You can also specify false for permissions of this type.

    Users inherit permissions from the groups they are a part of. If a user is not specified here, or does not have a 'groups' node, they will be in the group 'default'. Permissions for individual users may also be specified by using a 'permissions' node with a list of permission nodes, which will override their group permissions. World permissions may be assigned to users with a 'worlds:' entry.

    Groups can be assigned to players and all their permissions will also be assigned to those players. Groups can also inherit permissions from other groups. Like user permissions, groups may override the permissions of their parent group(s). Unlike users, groups do NOT automatically inherit from default. World permissions may be assigned to groups with a 'worlds:' entry.

    The cannot-build message is configurable. If it is left blank, no message will be displayed to the player if PermissionsBukkit prevents them from building, digging, or interacting with a block. Use '&' characters to signify color codes.

    An example configuration file might look like this:
    Code:
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: false
        admin:
            permissions:
                permissions.*: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    

    Permissions:
    Show Spoiler
    PermissionsBukkit checks for the following permission nodes:
    • permissions.build - Allows a player to build. Defaults to true.
    • permissions.help - Allows viewing of usage for /permissions.
    • permissions.reload - Allows use of /permissions reload.
    • permissions.check - Allows use of /permissions reload.
    • permissions.info - Allows use of /permissions reload.
    • permissions.dump - Allows use of /permissions reload.
    • permissions.group.help - Allows viewing of usage for /permissions group.
    • permissions.group.list - Allows use of /permissions group list.
    • permissions.group.players - Allows use of /permissions group players.
    • permissions.group.setperm - Allows use of /permissions group setperm.
    • permissions.group.unsetperm - Allows use of /permissions group unsetperm.
    • permissions.player.help - Allows viewing of usage for /permissions player
    • permissions.player.groups - Allows use of /permissions player groups.
    • permissions.player.setgroup - Allows use of /permissions player setgroup.
    • permissions.player.addgroup - Allows use of /permissions player addgroup.
    • permissions.player.removegroup - Allows use of /permissions player removegroup.
    • permissions.player.setperm - Allows use of /permissions player addgroup.
    • permissions.player.unsetperm - Allows use of /permissions player removegroup.
    Also, the following parent nodes are provided for convenience:

    • permissions.* - Maps to permissions.help, .reload, .check, .info, .dump, and to permissions.group.* and permissions.player.*. Defaults to op.
    • permissions.group.* - Maps to permissions.group.help, .list, .players, .setperm, and .unsetperm.
    • permissions.player.* - Maps to permissions.player.help, .groups, .setgroup, .addgroup, .removegroup, .setperm, and .unsetperm.


    Frequently Asked Questions:
    1. Where are my * nodes? (open)
    Bukkit's Superperms has no built-in concept of a global '*' node that automatically gives all permissions, which is intentional - a player can instead be given all permissions by being given 'op' status (that is, listed in ops.txt). Additionally, individual plugins define a parent node (which could be 'pluginname.*' or 'pluginname.all' or anything else) which maps to whatever subpermissions in that plugin the author desires.

    An example is PermissionsBukkit, which provides three such permissions: 'permissions.group.*' for all /permissions group commands, 'permissions.player.*' for all /permissions player commands, and'permissions.*' for all /permissions commands (including permissions.group.* and permissions.player.*).

    If you are using SuperpermsBridge, you can do something similar to '*' nodes for plugins which use Permissions 2.7/3.1 - see the next FAQ for more information.
    2. How do I use SuperpermsBridge? (open)
    SuperpermsBridge is kind of like FakePermissions for GroupManager or PermissionsBridge for PermissionsEx. Once it's installed, it pretends to be the Permissions plugin and converts any plugins that use Permissions 2.7 or Permissions 3.1 to use Superperms instead.

    You can have PermissionsBukkit without SuperpermsBridge or SuperpermsBridge without PermissionsBukkit if you like, but both of these are limited in functionality. If you install SuperpermsBridge without PermissionsBukkit you will not be able to make use of PermissionsBukkit's groups feature or admin commands, and if you install PermissionsBukkit without SuperpermsBridge, plugins that have not updated to use Superperms directly will not function.

    For plugins that use Permissions 2.7/3.1, you can use the special node 'superpermbridge.*' to give the equivalent of what used to be the '*' node for plugins that do not use Superperms directly. If you don't want to give the * node, you can also use the node 'superpermbridge.pluginname' to do the equivalent of what used to be the 'pluginname.*' node. Once again, these only apply to plugins that SuperpermsBridge handles and not to plugins using Superperms directly.
    3. How do I use the root permissions.yml? (open)
    The file 'permissions.yml' in the root of your server can be used to set up custom parent permissions. Parent permissions are a single node that, when given to a player or group, automatically give all their children node. Here's a simple example:
    Code:
    server.basics:
        children:
            commandbook.motd: true
            commandbook.say: true
            commandbook.say.me: true
            commandbook.time: true
    
    Now, if you give a player the node 'server.basics', they automatically get all the nodes listed here. Children may also say 'false' instead of 'true', in which case giving the parent will remove the child instead of giving it.

    You can also specify a description if you like, which can be used by plugins to provide information on your node (such as PermissionsBukkit's /perm info command). If you want, you can also provide a default, which can be one of "true", "false", "op", or "notop". CraftBukkit will automatically assign everyone, no one (default), ops, or non-ops the children permissions based on the specified default. Without any plugin like PermissionsBukkit, you can use this defaults system as a limited way to assign people permissions. Here's a more complex example:
    Code:
    server.basics:
        description: Basic permissions for My Cool Server.
        default: true
        children:
            commandbook.motd: true
            commandbook.say: true
            commandbook.say.me: true
            commandbook.time: true
    server.admin:
        description: Admin permissions for My Cool Server.
        default: op
        children:
            commandbook.broadcast: true
            commandbook.teleport: true
            commandbook.kick: true
            commandbook.ban: true
    
    You can also define permissions without children, but this is of limited usefulness in permissions.yml (though is important in plugin.yml; see question #6)
    4. How do I switch from (other Permissions plugin)? (open)
    Depends on the Permissions plugin! If you were using PEX's YAML backend, I have a converter done and available on the PermissionsBukkit Tools page. Also available on the tools page is an automatic converter for Essentials GroupManager users.yml and groups.yml files. Automatic converters for Permissions 2.7 and 3.x are on their way, but in the meantime you can still convert your configurations manually.
    5. Where are prefixes and suffixes (or option nodes)? (open)
    Bukkit Superperms has no built-in prefix/suffix settings or non-boolean permission nodes, so individual chat plugins will have to start supporting Superperms in order to make use of non-Permissions-plugin based prefixes and suffixes. Herochat, iChat, and Simple Suffix are all aware of the Superperms update, but in the meantime you can use mChat, which already supports Superperms.

    Once you install mChat and configure the mchat.prefix, mchat.suffix, and mchat.group names in its configuration file (see the example), use PermissionsBukkit to give players or groups the permissions "mchat.prefix.admin", replacing "admin" with whatever node you configured. For example, with an mchat configuration that looks similar to this:
    Code:
    da-name-format: '+prefix+name&e'
    date-format: HH:mm:ss
    message-format: '+prefix+name&f: +message'
    mchat:
        prefix:
            admin: '&4DtK [SO] &7 '
            sadmin: '&9DtK [SA] &7 '
            jadmin: '&aDtK [JA] &7  '
            member: '&cDtK [M] &7 '
    
    You can assign players or groups the mchat.prefix.admin node to get the "SO" prefix, mchat.prefix.sadmin to get the "SA" prefix, and so on.
    6. (Coders) How do I set up my plugin.yml? (open)
    Take a look at this post in Dinnerbone's FAQ for an example. This is a lot like the setup of permissions.yml (see above), but you can also define non-parent permissions (just include description and default and leave out children).
    7. Is PermissionsBukkit outdated? (open)
    No! PermissionsBukkit 2.0 was last updated for 1.3.1-R2.0, is verified to work on 1.4.7-R1.0, and is unlikely to break on future releases.

    Downloads:
    Current Version:

    PermissionsBukkit v2.0 (jar) (details)
    Old Versions:
    PermissionsBukkit v1.6 (jar) (details)

    [​IMG]

    Changelog:

    Friday 7 September 2012 (2.0)
    • Fixed a case-sensitivity issue with setting per-world permissions that could cause some permissions to fail to apply.
    • Added /perm setrank <player> <group> subcommand (alias rank) with per-group permissions (permissions.setrank and permissions.setrank.<group>)
    • Added plugin metrics via http://mcstats.org/plugin/PermissionsBukkitMCStats (disableable in plugins/PluginMetrics/config.yml)
    Wednesday 29 February 2012 (1.6)
    • Fixed some massive issues that were caused due to having uploaded a buggy, in-development version instead of 1.5.
    • Note: If your configuration was messed up as a result of this issue, the new build should gradually correct it as needed.
    Saturday 25 February 2012 (1.5b)
    • Revamped to be compatible with R5.
    • Fixed issues with permissions not carrying properly on world change.
    • Many internal improvements for performance and stability.
    • SuperpermsBridge: in honor of R5 removing deprecated code, SuperpermsBridge is officially gone!
    Monday 18 July 2011 (1.1/1.2)
    • Fix BukkitContrib incompatibility issues.
    • Improved the output of the /perm check command.
    • Fixed issues when 'users:' is not specified in the config file.
    • Fixed the /permissions reload command.
    • SuperpermsBridge: improve wildcard handling; in addition to 'superpermbridge.*' and 'superpermbridge.pluginname', now supported are 'superpermbridge.plugin.*', 'superpermbridge.plugin.subnode.*', and so on.
    Monday 18 July 2011 (1.0/1.1)
    • SuperpermsBridge: adding the special 'superpermbridge.*' and 'superpermbridge.pluginname' nodes (see #2 in the FAQ for details).
    Sunday 17 July 2011 (1.0/1.0)

    • Initial release of PermissionsBukkit v1.0 and SuperpermsBridge v1.0.
     
    madmac, Gesundheit, tripleX and 23 others like this.
  2. Offline

    Celtic Minstrel

    That's false. As I recall, both PEX and bPerms have prefixes.
     
  3. Offline

    smurphatron

    Is there a way to give certain OP commands to regular users?
    For example, I want my default users to have access to the OP command "/list", but can't figure out how to do this.
    Is this possible in PermissionsBukkit?
     
  4. Offline

    mike0fmikes

    So, this might be a stupid question...and I'm sure it's explained somewhere (even though I can't find it in this thread or the other thread)
    Which takes priority, a permission node set to true, or one set to false (if they are set in the same group)?

    example.test
    children:
    superpermbridge.*: true
    mod.command: false

    Which takes precedence, mod.command or superperbridge.* ? I would think that you would get granted everything under superpermbridge; but then mod.command would be disallowed because it's implicitly defined.


    If "mod.command: false" overrides that would be great.
    If it doesn't then it definitely should. I understand wanting to have a super-perm to use as a cannon-ball to kill the fly that is explicitly defining every-single-solitary-node. If it blanket-allows or denies everything leaving no room for modification then it's kind of pointless for anything beyond cannon-ball vs. fly work.


    I'm using PermissionsBukkit and SuperPermBridge.
     
  5. Offline

    Finey

    how do u setup up iconomy ?
    can u send me a link of your presetup ?
     
  6. Offline

    Mine4Tim

    I have no idea how to do permissions.
    One question:
    Is this a good start?
    user:
    permissions:
    - essentials.balance
    permissions.build: true
    worlds:
    creative:
    coolplugin.item: true
    inheritance:
    - default
     
  7. Offline

    ray0911

    Why are new players not automatically added to the config.yml file?
     
  8. Offline

    lolydodo123

    So Converting from PEX to This permissions is easy? Or will it take me an hour or two..?
     
  9. Offline

    Curxe

    smurphatron: This can be done with the official default commands from bukkit.But if you have another plugin which overwrites the default commands then use them permission nodes.Like Essentials or Commandbook.You can find them on the wiki: Click
    ray0911:You have to setup an group called "default".If a player joins he will be promoted into this group.
    Mine4Tim:This seems not so good.First of all you have to delete all your ' or -.Then check out the startspoiler for the config.yml.
    lolydodo123:If you have a big .yml it should only take you 2 hours.For a smaller .yml it should take you only 50 minutes.For simple converting you can use the converter.
     
  10. Offline

    67Maxime67

    Hi! I have a really annoying problem. A creeper problem, exactly.
    Players receive damage when a creeper explode, but admins not! What is the problem?
    Here is my config: http://pastebin.com/i9SkAfGc
     
  11. Offline

    tysonzero

    does krinsdeaths fix build work with 1.0? dev-bukkit? because the latest dev-build download gives me a 404 error page if i try to get it
     
  12. Offline

    ray0911

    When I use a "plugin" that trys to promote a default player its unable to. Unless the player is actually under " users:" with the group "default" set. Shouldn't new players be added in the config.yml automatically? Or its this a short coming of the person that made the promoting plugin?
     
  13. Offline

    Curxe

    67Maxime67:Try it to give the group "admin" also the nodes from essentials.protect.
    tysonzero:It should work with the fixed build 1.2.
    ray0911:New people which will be promoted in the default group with a command will be added in the config.yml.If you only use THE default group,nobody will add in the config.yml to hold it clear and make it not so big.
     
  14. Offline

    fireblade

    How do i go about setting the worlds permissions?
     
  15. Offline

    Curxe

    fireblade:You can set this after the permissions by the specified group.If you don't change anything on your groups for other worlds, it will take over the default permissions for all worlds.
    To change this write:
    Code:
        admin:
            permissions:
                permissions.*: true
            inheritance:
            - user
    to this:
    Code:
        admin:
            permissions:
                permissions.build: true
            worlds:
                worldname:
                    permissions.*: false
    GC
     
  16. Offline

    mario00037

    Having trouble with the converter.
    Here is my permissions.yml
    If you convert it my group name's change and some groups aren't even there.
    Using PEX.
     
  17. Offline

    GameChamp98

    Hey guys,

    I've got an problem. Today I wanted to update my server to 1.0, so I downloaded all plugins etc. I configurated PermissionsBukkit, but it always gives me mistakes in the first lines. Could anyone search for the problem?

    Server log:
    Show Spoiler
    2011-12-29 13:32:56 [INFO] Starting minecraft server version 1.0.1
    2011-12-29 13:32:56 [INFO] Loading properties
    2011-12-29 13:32:56 [INFO] Starting Minecraft server on 78.143.39.211:25565
    2011-12-29 13:32:56 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    2011-12-29 13:32:56 [WARNING] The server will make no attempt to authenticate usernames. Beware.
    2011-12-29 13:32:56 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
    2011-12-29 13:32:56 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
    2011-12-29 13:32:56 [INFO] This server is running Craftbukkit version git-Bukkit-1.0.1-R1-b1597jnks (MC: 1.0.1) (Implementing API version 1.0.1-R1)
    2011-12-29 13:32:56 [INFO] LWC: Loading shared objects
    2011-12-29 13:32:56 [INFO] LWC: Native library: plugins/LWC/lib/lib/native/Linux/amd64/libsqlitejdbc.so
    2011-12-29 13:32:56 [INFO] LWC: Protection cache: 0/10000
    2011-12-29 13:32:56 [INFO] LWC: Loaded 207 locale strings (0 overrides)
    2011-12-29 13:32:57 [INFO] LWC: Permissions API: BukkitPermissions
    2011-12-29 13:32:57 [INFO] LWC: Currency API: EssentialsCurrency
    2011-12-29 13:32:57 [INFO] LWC: Connecting to SQLite
    2011-12-29 13:32:57 [INFO] LWC: Performing any necessary database updates
    2011-12-29 13:32:57 [INFO] LWC: Using: Native
    2011-12-29 13:32:57 [INFO] LWC: Precached 0 protections.
    2011-12-29 13:32:57 [INFO] LWC: At version: 4.0.2 (b576)
    2011-12-29 13:32:57 [INFO] Preparing level "world"
    2011-12-29 13:32:57 [INFO] Default game type: 0
    2011-12-29 13:32:57 [INFO] LWC: Latest version: 4.0.2
    2011-12-29 13:32:57 [INFO] Preparing start region for level 0 (Seed: -4807014401253975474)
    2011-12-29 13:32:58 [INFO] Preparing start region for level 1 (Seed: -4807014401253975474)
    2011-12-29 13:32:58 [INFO] Preparing spawn area: 20%
    2011-12-29 13:32:58 [INFO] Preparing start region for level 2 (Seed: -4807014401253975474)
    2011-12-29 13:32:59 [SEVERE] Error occurred while enabling PermissionsBukkit v1.2 (Is it up to date?): while scanning for the next token; found character '\t' that cannot start any token
    while scanning for the next token
    found character '\t' that cannot start any token
    in "<reader>", line 6, column 1:
    permissions:
    ^

    at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:358)
    at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:179)
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:591)
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:146)
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:133)
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:237)
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
    at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:237)
    at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
    at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:123)
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106)
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:121)
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:480)
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:423)
    at org.bukkit.util.config.Configuration.load(Configuration.java:89)
    at org.bukkit.plugin.java.JavaPlugin.getConfiguration(JavaPlugin.java:118)
    at com.platymuus.bukkit.permissions.BlockListener.<init>(BlockListener.java:15)
    at com.platymuus.bukkit.permissions.PermissionsPlugin.onEnable(PermissionsPlugin.java:39)
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:188)
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:968)
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:280)
    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:186)
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:169)
    at net.minecraft.server.MinecraftServer.t(MinecraftServer.java:348)
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:335)
    at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:165)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:399)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:457)
    2011-12-29 13:32:59 [INFO] File not found: plugins/Essentials/jail.yml
    2011-12-29 13:32:59 [INFO] Loaded Essentials build 2.7.2 by: Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits
    2011-12-29 13:32:59 [INFO] Essentials: Using PermissionsBukkit based permissions.
    2011-12-29 13:32:59 [INFO] WorldEdit 5.0 enabled.
    2011-12-29 13:32:59 [INFO] WEPIF: Updated config file
    2011-12-29 13:32:59 [INFO] WEPIF: Using the Bukkit Permissions API.
    2011-12-29 13:32:59 [INFO] WEPIF: Using the Bukkit Permissions API.
    2011-12-29 13:32:59 [INFO] [Rakamak] Rakamak activation... Security is yours
    2011-12-29 13:32:59 [INFO] Rakamak version 3.6.1 is enabled. Plugin provided by [Erwyn & Dorpaxio]
    2011-12-29 13:32:59 [INFO] Loaded EssentialsChat build 2.7.2 by: essentials team
    2011-12-29 13:32:59 [INFO] File not found: plugins/Essentials/spawn.yml
    2011-12-29 13:32:59 [INFO] Loaded EssentialsSpawn build 2.7.2 by: essentials team
    2011-12-29 13:32:59 [INFO] WEPIF: Using the Bukkit Permissions API.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world) Single session is enforced.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world) TNT ignition is blocked.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world) Lava fire is PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world) All fire spread is disabled.
    2011-12-29 13:33:00 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_nether) TNT ignition is blocked.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_nether) Lava fire is PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_nether) All fire spread is disabled.
    2011-12-29 13:33:00 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_the_end) Single session is enforced.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_the_end) TNT ignition is blocked.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_the_end) Lighters are PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_the_end) Lava fire is PERMITTED.
    2011-12-29 13:33:00 [INFO] WorldGuard: (world_the_end) All fire spread is disabled.
    2011-12-29 13:33:00 [INFO] WorldGuard: Loaded configuration for world 'world_the_end"
    2011-12-29 13:33:00 [INFO] WorldGuard: 0 regions loaded for 'world'
    2011-12-29 13:33:00 [INFO] WorldGuard: 0 regions loaded for 'world_nether'
    2011-12-29 13:33:00 [INFO] WorldGuard: 0 regions loaded for 'world_the_end'
    2011-12-29 13:33:00 [INFO] WorldGuard 5.4 enabled.
    2011-12-29 13:33:00 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-12-29 13:33:00 [INFO] Done (0.300s)! For help, type "help" or "?"


    Permissions file:
    Show Spoiler
    users:

    groups:
    default:
    permissions:

    admin:
    permissions:
    permissions.*: true
    essentials.*: true
    inheritance:
    - user

    user:
    permissions:
    permissions.build: true
    essentials.afk: true
    essentials.help: true
    essentials.list: true
    essentials.msg: true
    essentials.near: true
    essentials.seen: true
    essentials.suicide: true
    essentials.spawn: true
    essentials.back: true
    essentials.home: true
    essentials.sethome: true
    essentials.warp: true
    inheritance:
    - default
    messages:
    build: '&cDu hast nicht die Berechtigung, hier zu bauen.'


    (not much, I know, but I wanted to set up the server for some tests)

    I'm such a moron... I simply used tabs. shit.
     
  18. Offline

    blazeinpower

    Im having the same issue...how do I fix this?
     
  19. Offline

    tysonzero

    if you use the <tab> key to indent in the config.yml the plugin will NOT work. use single/multiple <space> keys instead

    oh and also is there a way to make it so that if someone logs on they are auto-ranked, or if they play on the server for 24hours of game time or after 2 weeks since they joined they get promoted etc. etc. also if there is a way to link it to a website so they are auto-ranked when they make an account on the website and all that fun stuff?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 14, 2016
  20. Offline

    Cheewy

    Could anyone help me with prefixes i've tried ichat,herochat,jchat, and now im using mchat i'm not sure why it won't allow prefixes everything else on my server works here's all the plugins.

    http://pastebin.com/M5h17RQN

    would really really appericate it thanks!
     
  21. Offline

    sss

    is it possible to set permissions for a single command???
     
  22. Offline

    millerni456

    EDIT: THIS IS FIXED

    -My plugin.yml had
    Code:
    permission: Spawnorefic.listcity //List all cities.
    
    The "//List all cities" interfered.

    _______________________________________________
    PROBLEM:
    So for some reason my server players cannot use the command:
    Code:
    /listcity
    
    The error shows on the user's minecraft client:
    I'm sorry, but you do not have permission to perform this command. Please contact the server administrators if you believe that this is an error.


    Now, I though this would be possible because all other commands work as specified in the config below.
    The line of interest is
    Code:
                spawnorefic.listcity: true
    
    If you could help me out with this error, that'd be great.

    Code:
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: true
                spawnorefic.home: true
                spawnorefic.sethome: true
                spawnorefic.worldhome: true
                spawnorefic.imbue: true
                spawnorefic.listcity: true
        admin:
            permissions:
                permissions.*: true
                spawnorefic.*: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  23. Offline

    ElektrikBanana

    ...im a newb to permssions...some plugins just default to the, op, non op and ignore the permissions! I cant get, for example Colors 1.7.5 to work, it ignores the permission nodes i put on the config.yml. Other plugin dont let me do things that i listed that group could do, it just says "you do not have permission to do that." when i do (the permission node is in the config.yml, and its set to true). Im stuck! Please help me!
     
  24. Offline

    Vaupell

    Im getting "Mapping values are not allowed here" and it points to the colon after permissions:<--
    This is my config default group..
    Code:
    groups:
        guest:
        default: true
            permissions:
                - permissions.build: false
                - permissions.help: true
                - commandbook.who: true
                - commandbook.time: true
                - commandbook.spawn: true
                - commandbook.say: true
                - commandbook.say.me: true
                - commandbook.msg: true
                - commandbook.whereami: true
                - lwc.deny: true
                prefix: '[Guest]'
    
    any idea whats wrong?
     
  25. Offline

    Curxe

    Vaupell: Delete all of your "-".
    tysonzero: Try to use it with the plugin "ForumAcc". Click

    GC
     
  26. Offline

    rskelhorn

    I have a bit of an issue. Since updating to the new MCMA, when I do a promotion, I have to do /permissions reload to take affect, it no longer does this on the fly. Any Suggestions?
     
  27. Offline

    CovertHoax

    Im currently fixing up a plugin that was inactive..

    Problem is I have never coded in Java before only C++ and I have never looked at Plugins for Bukkit before.

    I have fixed alot of issues with it the only thing im tuck with now is the Permissions.
    I thought I had it all figured out and fixed until i actually ran it and I had no permissions to do anything.

    I basicly need to add in some code that checks your config file to see if they have permission to use a command.
    Im using this at the moment...


    Code:
     IF (UQuest.checkPlayerPerm(player, "uQuest.CanQuest.give") == true)
    {
    //Allow player to use "/uQuest give" command
     }
    UQuest.checkPlayerPerm is currently this...



    Code:
    public static boolean checkPlayerPerm(Player PlayersName, String subnode)
    {
     	        boolean ok = PlayersName.hasPermission("permissions." + subnode);
     	        return ok;
    }
    
    Problem is it doesnt seem to check your config file for the permissions.. I believe this is because I'm using .hasPermission (a bukkit function) and it needs replacing with a PermissionsBukkit function

    Any Chance you can give me a pointer as to how to fix this??
     
  28. Offline

    Grey_M62

    Is there a way to convert from permissions 3.x?
     
  29. Offline

    Ammar18

    How do i add colors on groups?
     
  30. Offline

    mario00037

    How can I set what group to be set to when you first join. A simple 'default: true' like this?
    Code:
    groups:
        Noob:
            default: true
            permissions:
                permissions.build: true
                essentials.list: true
                essentials.motd: true
                essentials.spawn: true
                essentials.item: false
                nocheat.checks.fight.selfhit: true
                bcs.bypass.blockplace: true
                mcbans.*: false
                essentials.afk: true
                mobarena.*: false
                essentials.chat.question: true
                essentials.chat.shout: true
                essentials.compass: true
                essentials.depth: true
                essentials.help: true
                essentials.home: true
                essentials.ignore: true
                essentials.mail: true
                essentials.mail.send: true
                essentials.me: true
                essentials.msg: true
                essentials.ping: true
                foundboxx.notify: true
                iConomy.accounts.create: true
                iConomy.help: true
                iConomy.holdings: true
                iConomy.holdings.other: true
                iConomy.payment: true
                lwc.protect: true
                mcmmo.ability.*: true
                mcmmo.commands.myspawn: true
                mcmmo.commands.setmyspawn: true
                mcmmo.skills.*: true
                modtrs.command.check.self: true
                modtrs.command.list: true
                multiverse.access.NoobWorld: true
                myhome.econ.free.*: true
                myhome.home.basic.delete: true
                myhome.home.basic.home: true
                myhome.home.basic.set: true
                myhome.home.soc.invite: true
                myhome.home.soc.others: true
                myhome.home.soc.private: true
                myhome.home.soc.public: true
                myhome.home.soc.uninvite: true
                nocheat.checks.chat.spam: true
                nocheat.checks.moving.morepackets: true
                pchest.open: true
                simplesignedit.colour.*: true
                simplesignedit.edit: true
            inheritance: []
     
  31. Offline

    ElektrikBanana

    Code:
    users:
        zxtotalbiscuitxz:
            groups:
            - admin
        elektrikbanana:
            groups:
            - admin
        xRigaz95x:
            groups:
            - moderator
        benjonjones9:
            groups:
            - default
    defaultgroups:
        default:
            permissions:
                permissions.build: true
            worlds:
                world:
                    shiftmode.shift: false
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: false
                    selfservice.count: false
                    selfservice.create: false
                    selfservice.remove: false
                    selfservice.sell.anyregion: false
                    selfservice.sell.forfree: false
                    selfservice.buy.bypassmax: false
                    selfservice.reload: false
                    selfservice.sell.anywhere: false
                    msp.*: false
                    lwc.protect: true
                    lwc.mod: false
                    lwc.admin: false
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.payment: true
                    simpleWeather.set: false
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: false
                    ChestShop.mod: false
                    mobdisguise.*: false
                    colors.hex: false
                    colors.rainbow: false
                    colors.admin: false
                    colors.prefix: false
                    colors.suffix: false
                    colors.reload: false
                    jail.command.jailcreate: false
                    jail.command.jailcreatecells: false
                    jail.command.jaildelete: false
                    jail.command.jaildeletecells: false
                    jail.command.jail: false
                    jail.command.unjail: false
                    jail.command.jailtransfer: false
                    jail.command.jailtransferall: false
                    jail.command.jailcheck: true
                    jail.command.jailtelein: false
                    jail.command.jailteleout: false
                    jail.command.jaillist: false
                    jail.command.jaillistcells: false
                    jail.command.unjailforce: false
                    jail.command.jailclear: false
                    jail.command.jailclearforce: false
                    jail.command.jailmute: false
                    jail.command.jailstop: false
                    craftbukkit.command.stop: false
                    craftbukkit.command.kill: false
                    craftbukkit.command.ban.player: false
                    craftbukkit.coomand.give: false
                    craftbukkit.command.kick: false
                    craftbukkit.command.list: true
                    craftbukkit.command.me: false
                    craftbukkit.command.op: false
                    craftbukkit.command.save.perform: false
                    craftbukkit.command.say: false
                    craftbukkit.command.teleport: false
                    craftbukkit.command.tell: false
                    craftbukkit.command.time.set: false
                    craftbukkit.command.unban.player: false
                    craftbukkit.command.whitelist: false
        moderator:
            permissions:
                permissions.player*: true
                permissions.group*: true
            worlds:
                world:
                    shiftmode.shift: false
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: false
                    selfservice.count: false
                    selfservice.create: false
                    selfservice.remove: false
                    selfservice.sell.anyregion: false
                    selfservice.sell.forfree: false
                    selfservice.buy.bypassmax: false
                    selfservice.reload: false
                    selfservice.sell.anywhere: false
                    msp.*: false
                    craftbukkit.command.ban.player: true
                    craftbukkit.command.give: false
                    craftbukkit.command.kick: true
                    craftbukkit.command.kill: true
                    craftbukkit.command.list: true
                    craftbukkit.command.me: false
                    craftbukkit.command.op: false
                    craftbukkit.command.save.perform: false
                    craftbukkit.command.say: false
                    craftbukkit.command.teleport: true
                    craftbukkit.command.tell: true
                    craftbukkit.command.time.set: true
                    craftbukkit.command.unban.player: true
                    craftbukkit.command.whitelist: false
                    craftbukkit.command.stop: false
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.holdings.others: true
                    iConomy.payment: true
                    iConomy.accounts.create: false
                    iConomy.accounts.remove: false
                    iConomy.accounts.give: false
                    iConomy.accounts.take: false
                    iConomy.accounts.set: false
                    iConomy.accounts.status: true
                    iConomy.accounts.status.set: true
                    iConomy.accounts.purge: false
                    iConomy.accounts.empty: false
                    simpleWeather.set: true
                    lwc.protect: true
                    lwc.mod: true
                    lwc.admin: false
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: false
                    ChestShop.mod: true
                    mobdisguise.*: false
                    colors.hex: true
                    colors.rainbow: false
                    colors.admin: true
                    colors.prefix: true
                    colors.suffix: true
                    colors.reload: true
                    jail.command.jailcreate: false
                    jail.command.jailcreatecells: false
                    jail.command.jaildelete: false
                    jail.command.jaildeletecells: false
                    jail.command.jail: true
                    jail.command.unjail: true
                    jail.command.jailtransfer: true
                    jail.command.jailtransferall: true
                    jail.command.jailcheck: true
                    jail.command.jailtelein: false
                    jail.command.jailteleout: false
                    jail.command.jaillist: true
                    jail.command.jaillistcells: false
                    jail.command.unjailforce: false
                    jail.command.jailclear: false
                    jail.command.jailclearforce: false
                    jail.command.jailmute: false
                    jail.command.jailstop: false
        admin:
            permissions:
                permissions.*: true
            worlds:
                world:
                    shiftmode.shift: true
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: true
                    selfservice.count: true
                    selfservice.create: true
                    selfservice.remove: true
                    selfservice.sell.anyregion: true
                    selfservice.sell.forfree: true
                    selfservice.buy.bypassmax: true
                    selfservice.reload: true
                    selfservice.sell.anywhere: true
                    msp.*: true
                    craftbukkit.command.ban.player: true
                    craftbukkit.coomand.give: true
                    craftbukkit.command.kick: true
                    craftbukkit.command.kill: true
                    craftbukkit.command.list: true
                    craftbukkit.command.me: true
                    craftbukkit.command.op: true
                    craftbukkit.command.save.perform: true
                    craftbukkit.command.say: true
                    craftbukkit.command.teleport: true
                    craftbukkit.command.tell: true
                    craftbukkit.command.time.set: true
                    craftbukkit.command.unban.player: true
                    craftbukkit.command.whitelist: true
                    craftbukkit.command.stop: false
                    biome.set.chunk: true
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.holdings.others: true
                    iConomy.payment: true
                    iConomy.accounts.create: true
                    iConomy.accounts.remove: true
                    iConomy.accounts.give: true
                    iConomy.accounts.take: true
                    iConomy.accounts.set: true
                    iConomy.accounts.status: true
                    iConomy.accounts.status.set: true
                    iConomy.accounts.purge: true
                    iConomy.accounts.empty: true
                    simpleWeather.set: true
                    lwc.protect: true
                    lwc.mod: true
                    lwc.admin: true
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: true
                    ChestShop.mod: true
                    mobdisguise.*: true
                    colors.hex: true
                    colors.rainbow: true
                    colors.admin: true
                    colors.prefix: true
                    colors.suffix: true
                    colors.reload: true
                    jail.command.jailcreate: true
                    jail.command.jailcreatecells: true
                    jail.command.jaildelete: true
                    jail.command.jaildeletecells: true
                    jail.command.jail: true
                    jail.command.unjail: true
                    jail.command.jailtransfer: true
                    jail.command.jailtransferall: true
                    jail.command.jailcheck: true
                    jail.command.jailtelein: true
                    jail.command.jailteleout: true
                    jail.command.jaillist: true
                    jail.command.jaillistcells: true
                    jail.command.unjailforce: true
                    jail.command.jailclear: true
                    jail.command.jailclearforce: true
                    jail.command.jailmute: true
                    jail.command.jailstop: true
        citizen:
            permissions:
                permissions.build: true
            worlds:
                world:
                    shiftmode.shift: false
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: false
                    selfservice.count: false
                    selfservice.create: false
                    selfservice.remove: false
                    selfservice.sell.anyregion: false
                    selfservice.sell.forfree: false
                    selfservice.buy.bypassmax: false
                    selfservice.reload: false
                    selfservice.sell.anywhere: false
                    msp.*: false
                    lwc.protect: true
                    lwc.mod: false
                    lwc.admin: false
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.payment: true
                    simpleWeather.set: false
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: false
                    ChestShop.mod: false
                    mobdisguise.*: false
                    colors.hex: false
                    colors.rainbow: false
                    colors.admin: false
                    colors.prefix: false
                    colors.suffix: false
                    colors.reload: false
                    jail.command.jailcreate: false
                    jail.command.jailcreatecells: false
                    jail.command.jaildelete: false
                    jail.command.jaildeletecells: false
                    jail.command.jail: false
                    jail.command.unjail: false
                    jail.command.jailtransfer: false
                    jail.command.jailtransferall: false
                    jail.command.jailcheck: true
                    jail.command.jailtelein: false
                    jail.command.jailteleout: false
                    jail.command.jaillist: false
                    jail.command.jaillistcells: false
                    jail.command.unjailforce: false
                    jail.command.jailclear: false
                    jail.command.jailclearforce: false
                    jail.command.jailmute: false
                    jail.command.jailstop: false
                    craftbukkit.command.stop: false
                    craftbukkit.command.kill: false
                    craftbukkit.command.ban.player: false
                    craftbukkit.coomand.give: false
                    craftbukkit.command.kick: false
                    craftbukkit.command.list: true
                    craftbukkit.command.me: false
                    craftbukkit.command.op: false
                    craftbukkit.command.save.perform: false
                    craftbukkit.command.say: false
                    craftbukkit.command.teleport: false
                    craftbukkit.command.tell: false
                    craftbukkit.command.time.set: false
                    craftbukkit.command.unban.player: false
                    craftbukkit.command.whitelist: false
        vip:
            permissions:
                permissions.build: true
            worlds:
                world:
                    shiftmode.shift: false
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: false
                    selfservice.count: false
                    selfservice.create: false
                    selfservice.remove: false
                    selfservice.sell.anyregion: false
                    selfservice.sell.forfree: false
                    selfservice.buy.bypassmax: false
                    selfservice.reload: false
                    selfservice.sell.anywhere: false
                    msp.*: false
                    lwc.protect: true
                    lwc.mod: false
                    lwc.admin: false
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.payment: true
                    simpleWeather.set: true
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: false
                    ChestShop.mod: false
                    mobdisguise.*: false
                    colors.hex: false
                    colors.rainbow: false
                    colors.admin: false
                    colors.prefix: false
                    colors.suffix: false
                    colors.reload: false
                    jail.command.jailcreate: false
                    jail.command.jailcreatecells: false
                    jail.command.jaildelete: false
                    jail.command.jaildeletecells: false
                    jail.command.jail: false
                    jail.command.unjail: false
                    jail.command.jailtransfer: false
                    jail.command.jailtransferall: false
                    jail.command.jailcheck: true
                    jail.command.jailtelein: false
                    jail.command.jailteleout: false
                    jail.command.jaillist: false
                    jail.command.jaillistcells: false
                    jail.command.unjailforce: false
                    jail.command.jailclear: false
                    jail.command.jailclearforce: false
                    jail.command.jailmute: false
                    jail.command.jailstop: false
                    craftbukkit.command.stop: false
                    craftbukkit.command.kill: false
                    craftbukkit.command.ban.player: false
                    craftbukkit.coomand.give: false
                    craftbukkit.command.kick: false
                    craftbukkit.command.list: true
                    craftbukkit.command.me: false
                    craftbukkit.command.op: false
                    craftbukkit.command.save.perform: false
                    craftbukkit.command.say: false
                    craftbukkit.command.teleport: true
                    craftbukkit.command.tell: false
                    craftbukkit.command.time.set: false
                    craftbukkit.command.unban.player: false
                    craftbukkit.command.whitelist: false
        ilovebl:
            permissions:
                permissions.build: true
            worlds:
                world:
                    shiftmode.shift: true
                    worldguard.heal: true
                    selfservice.buy: true
                    selfservice.help: true
                    selfservice.info: true
                    selfservice.inform.member.sold: true
                    selfservice.inform.member.upforsale: true
                    selfservice.inform.owner.sold: true
                    selfservice.inform.owner.upforsale: true
                    selfservice.sell: true
                    selfservice.worth: false
                    selfservice.count: false
                    selfservice.create: false
                    selfservice.remove: false
                    selfservice.sell.anyregion: false
                    selfservice.sell.forfree: false
                    selfservice.buy.bypassmax: false
                    selfservice.reload: false
                    selfservice.sell.anywhere: false
                    msp.*: false
                    lwc.protect: true
                    lwc.mod: false
                    lwc.admin: false
                    HomeX.sethome: true
                    HomeX.home: true
                    iConomy.help: true
                    iConomy.holdings: true
                    iConomy.payment: true
                    simpleWeather.set: true
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    ChestShop.shop.create: true
                    ChestShop.admin: false
                    ChestShop.mod: false
                    mobdisguise.*: false
                    colors.hex: false
                    colors.rainbow: false
                    colors.admin: false
                    colors.prefix: false
                    colors.suffix: false
                    colors.reload: false
                    jail.command.jailcreate: false
                    jail.command.jailcreatecells: false
                    jail.command.jaildelete: false
                    jail.command.jaildeletecells: false
                    jail.command.jail: false
                    jail.command.unjail: false
                    jail.command.jailtransfer: false
                    jail.command.jailtransferall: false
                    jail.command.jailcheck: true
                    jail.command.jailtelein: false
                    jail.command.jailteleout: false
                    jail.command.jaillist: false
                    jail.command.jaillistcells: false
                    jail.command.unjailforce: false
                    jail.command.jailclear: false
                    jail.command.jailclearforce: false
                    jail.command.jailmute: false
                    jail.command.jailstop: false
                    craftbukkit.command.stop: false
                    craftbukkit.command.kill: false
                    craftbukkit.command.ban.player: false
                    craftbukkit.coomand.give: false
                    craftbukkit.command.kick: false
                    craftbukkit.command.list: true
                    craftbukkit.command.me: false
                    craftbukkit.command.op: false
                    craftbukkit.command.save.perform: false
                    craftbukkit.command.say: false
                    craftbukkit.command.teleport: true
                    craftbukkit.command.tell: false
                    craftbukkit.command.time.set: false
                    craftbukkit.command.unban.player: false
                    craftbukkit.command.whitelist: false
    messages:
        build: '&4You do not have permission to build here.'
    
    There is my permission file (config.yml within BukkitPermissions folder in plugin directory) and all the nodes starting with craftbukkit don't work, you have to be op to use craftbukkit commands even when the node is set to true, I don't know what im doing wrong, this problem also applies to SelfService, you have to op to use the commands even when the node is set to true, please help!! What am I doing wrong?
     

Share This Page