[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

    8_year_old

    I have a question.
    If I want to make it so that a player group has access to only one or two permission nodes on a plugin, but disable all of the others, is there a fast and easy way to do it other then going through the entire list of permissions for the plugin, setting the majority to "false" and then the one or two I want them to have to "true"

    Some of my plugins have a LOT of permission it can become time consuming doing it the way I have described above.
     
  3. Offline

    Zonta

    I have a question :
    Can i make the default group to "build : false" and define a region with world guard and allow them to build in that specific region?
     
  4. Offline

    Epics

    Will Permissions 1.2k ever support prefixes/suffixes?
     
  5. can I use these permissions:permissions.player.setgroup.user

    that mods cant make themselves for example to admin, only to users?
     
  6. Offline

    coolo1

    I converted my Groupmanager file thingo using the converter, but where do I put the mChat prefix info? I tried in the mChat config.yml and the PermissionsBukkit config.yml but it does nothing!
    Please help!
    coolo1
    [Edit]
    Found out. Put it in info file!

    Bump

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

    Xenarthran

    I'm making an Executable to help server hosts make the config file for this plugin, but I need some help.
    Which source should i look in to find where it reads the config file and makes the groups?

    If you dont want me to make this Executable feel free to say so and i wont publish it.
     
  8. Offline

    coolo1

    I would love it if it helped me!
     
  9. Offline

    rocket2913

    Hi, me and my cousin just recently made a server and were trying to configure permissions for like 10 different ranks. We read all of the instructions and also downloaded superperms bridge but we dont get how the code works in the one config file :( please help, Thanks!!!

    Could you please give us some instalation instructions for our groups. Thanks

    please give me some step by step instalation instaructions please thnks

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

    mike0fmikes


    In your root directory find the file "permissions.yml"
    In the file set up you nodes similar to this:


    Code:
    nodename:
        children:
            node.1: true
            node.2: true
    the "nodename" can be anything you want. I usually define which group I want to have it, then a subname. Something like "default.misc" or "admin.worldguard". The name can be anything you want. Under children is where you define the permissions from the plugin. Just go through the permissions that your individual plugins want you to define and add them here. put ": true" or ": false" to define whether you want them active or not.

    Once you get that part done, go to your /plugins/permissionsbukkit/ directory and open the config.yml in there. You can then, using the nodes that you set up in the other file, define individual and group permissions.

    Code:
    users:
        playername:
            groups:
            - Default
    
    
    groups:
        Default:
            permissions:
                nodename: true
    
    In this example "playername" is the player, and "Default" is the group they belong to. In the groups part, you can add the nodenames you create in "permissions.yml".

    Hope this helps! Just a little FYI for you though, generally devs don't want to see three different messages asking for the same thing. One post is enough. Also, all this stuff I've mentioned here is available either in the OP or by searching the forums...those two avenues should be your first plan of attack, well before you start asking the dev for help.
     
  11. Offline

    SolarBlaze

    Whenever I try to make a message that tells you that you don't have permission to build and start my server I get this: (actual error is on line 24)

    Server log (open)

    Code:
    05:35 PM [INFO] Server permissions file permissions.yml is empty, ignoring it
    05:35 PM [INFO] Done (0.217s)! For help, type "help" or "?"
    05:35 PM [INFO] [Pail] Pail 0.7.5 Enabled
    05:35 PM [INFO] [iConomy - Celty] Enabled (17 ms)
    05:35 PM [INFO] [MobDisguise] by desmin88 version 1.62 enabled.
    05:35 PM [INFO] [Prefixer] v2.5.1 has been enabled.
    05:35 PM [INFO] Rocket version 0.61 enabled!
    05:35 PM [INFO] SimpleCommandSigns version 0.5 is enabled!
    05:35 PM [INFO] [Simple Prefix v1.2.1] Configuration Loaded.
    05:35 PM [INFO] [Simple Prefix v1.2.1] Plugin enabled!
    05:35 PM [INFO] SpongeRestore version 1.2 is enabled!
    05:35 PM [INFO] Stargate v.0.6.9 is enabled.
    05:35 PM [INFO] [Stargate] Loaded 2 gate layouts
    05:35 PM [INFO] [Stargate] {world} Loaded 0 stargates with 0 set as always-on
    05:35 PM [INFO] [Stargate] {world_nether} Loaded 0 stargates with 0 set as always-on
    05:35 PM [INFO] [Stargate] {world_the_end} No stargates for world
    05:35 PM [INFO] WorldEdit 5.0 enabled.
    05:35 PM [INFO] CommandBook 1.7 enabled.
    05:35 PM [INFO] CommandBook: 4 Warps(s) loaded
    05:35 PM [INFO] CommandBook: 1 Homes(s) loaded
    05:35 PM [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some features have been disabled to be compatible with poorly written server wrappers.
    05:35 PM [INFO] CommandBook: 0 banned name(s) loaded.
    05:35 PM [INFO] CommandBook: 1 kit(s) loaded.
    05:35 PM [SEVERE] Error occurred while enabling PermissionsBukkit v1.2 (Is it up to date?): while parsing a block mapping; expected <block end>, but found Scalar
    05:35 PM [INFO] Server permissions file permissions.yml is empty, ignoring it
    05:35 PM [INFO] Reload complete.
    


    My config file looks like this:

    config.yml (open)

    Code:
    groups:
        noob:
            default: true
            permissions:
                permissions.build: false
                stargate.use: true
                simpleprefix.mod: false
                simpleprefix.noob: true
                simpleprefix.member: false
                simpleprefix.civil: false
        member:
            default: false
            permissions:
                permissions.tp: true
                permissions.reload: true
                permissions.build: true
                creativegate.use: false
                simplecommandsigns.use: true
                simpleprefix.mod: false
                simpleprefix.noob: false
                simpleprefix.member: true
                simpleprefix.civil: false
                iconomy.holdings: true
        civilian:
            inheritance: member
            default: false
            permissions:
                commandbook.weather: true
                rocket.*: true
                stargate.create: true
                stargate.destroy: true
                worldedit.*: true
                mobdisguise.*: true
                simpleprefix.mod: false
                simpleprefix.noob: false
                simpleprefix.member: false
                simpleprefix.civil: true
        mod:
            inheritance: civilian
            default: false
            permissions:
                commandbook.*: true
                permissions.ban: true
                permissions.kick: true
                simplecommandsigns.*: true
                simpleprefix.mod: true
                simpleprefix.noob: false
                simpleprefix.member: false
                simpleprefix.civil: false
                permissions.op: true
                permissions.reload: true
    messages:
        build: 'You don't have permission to build.'
    debug: false
    users:
        stellarwynd:
            groups:
            - noob
    


    I don't understand what is going on when I try to add the message. Am I supposed to type it some other way?
    Help?
     
  12. Offline

    Reggie Diamond

    /perm... Woot! Sadly, it doesn't do what it sounds like.:(
     
  13. Offline

    1981Thomas

    Hello
    Have a problem. I want to allow certain players to use commands. But as I write it in the "config.yml". I tried it so but without success.

    Plugins:
    - PermissionsBukkit
    - CommandBook
    - WorldEdit
    - WorldGuard

    Code:
    users:
        Player1:
            permissions:
                permissions.example: true
            groups:
            - admin
        Player2:
            permissions:
                permissions.example: true
                commandbook.time: true
                commandbook.spawnmob: true
            groups:
            - test
        Player3:
            permissions:
                permissions.example: true
                commandbook.time: true
                commandbook.spawnmob: true
            groups:
            - test
    groups:
        default:
            permissions:
                permissions.build: false
                prefix:
                suffix:
        admin:
            permissions:
                permissions.*: true
                prefix:
                suffix:
            inheritance:
            - test
        test:
            permissions:
                permissions.build: true
                prefix:
                suffix:
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    
    help thank you
     
  14. Offline

    Ahatikus_KZ

    Hi. I am using your plugin and I've created a group for guests. They can't built, but they have creative game mode to fly. But there is one problem: they can place lava. They don't have permission to build, but still they can place lava and water. How to fix this?
     
  15. Offline

    PJ_Flaherty

    Hi. I am having trouble with the groups in this plugin. I go to add someone to a group with the /permissions player addgroup <player> <group>, but when I press enter, it just gives me the list of commands I can do for permissions. I also am having trouble with the sethome and home commands for builders. Help?
     
  16. Offline

    Gnomeo76

    I just finished configuring this for my plugins, and it knows im in the group because it give me the prefix, but I dont actually get permission to do anything. If you know why PMing me would be more useful then posting on this thread.

    Code:
    users:
        gnomeo76:
            groups:
            - overlord
        iansay:
            groups:
            - member
        agent1945:
            groups:
            - member
        mylesschulz:
            groups:
            - member
        sketaful:
            groups:
            - admin
    groups:
        overlord:
            permissions:
                permissions.*: true
                showcase.basic: true
                showcase.infinite: true
                showcase.finite: true
                showcase.exchange: true
                showcase.buy.finite: true
                showcase.buy.infinite: true
                showcase.admin: true
                mcmmo.*: true
                telepads.create: true
                telepads.delete: true
                telepads.use: true
                telepads.link: true
                telepads.lph: true
                iConomy.*: true
                worldguard.god
                worldguard.god.other: true
                worldguard.ungod: true
                worldguard.ungod.other: true
                worldguard.heal: true
                worldguard.heal.other: true
                worldguard.slay: true
                worldguard.slay.other: true
                worldguard.locate: true
                worldguard.stack: true
                worldguard.stack.illegitimate: true
                worldguard.stack.damaged: true
                worldguard.region.define: true
                worldguard.region.redefine: true
                worldguard.region.redefine.own: true
                worldguard.region.redefine.member: true
                worldguard.region.claim: true
                worldguard.region.select.own.*: true
                worldguard.region.select.member.*: true
                worldguard.region.select.*: true
                worldguard.region.info.own: true
                worldguard.region.info.member: true
                worldguard.region.info: true
                worldguard.region.addowner.own.*: true
                worldguard.region.addowner.member.*: true
                worldguard.region.addowner.*: true
                worldguard.region.removeowner.own.*: true
                worldguard.region.removeowner.member.*: true
                worldguard.region.removeowner.*: true
                worldguard.region.addmember.own.*: true
                worldguard.region.addmember.member.*: true
                worldguard.region.addmember.*: true
                worldguard.region.removemember.own*: true
                worldguard.region.removemember.member.*: true
                worldguard.region.removemember.*: true
                worldguard.region.list.own: true
                worldguard.region.list: true
                worldguard.region.flag.regions.own.*: true
                worldguard.region.flag.regions.member.*: true
                worldguard.region.flag.regions.*: true
                worldguard.region.flag.flags.*: true
                worldguard.region.setpriority.own.*: true
                worldguard.region.setpriority.member.*: true
                worldguard.region.setpriority.*: true
                worldguard.region.setparent.own.*: true
                worldguard.region.setparent.member.*: true
                worldguard.region.setparent.*: true
                worldguard.region.remove.own.*: true
                worldguard.region.remove.member.*: true
                worldguard.region.remove.*: true
                worldguard.reload: true
                worldguard.report: true
                worldguard.report.pastebin: true
                worldedit.chunkinfo: true
                worldedit.listchunks: true
                worldedit.delchunk: true
                worldedit.clipboard.load: true
                worldedit.clipboard.save: true
                worldedit.clipboard.copy: true
                worldedit.clipboard.flip: true
                worldedit.clipboard.rotate: true
                worldedit.clipboard.cut: true
                worldedit.clipboard.paste: true
                worldedit.clipboard.clear: true
                worldedit.limit: true
                worldedit.global-mask: true
                worldedit.reload: true
                worldedit.fast: true
                worldedit.generation.cylinder: true
                worldedit.generation.sphere: true
                worldedit.generation.forest: true
                worldedit.generation.pumpkins: true
                worldedit.generation.pyramid: true
                worldedit.history.undo: true
                worldedit.history.redo: true
                worldedit.history.clear: true
                worldedit.navigation.unstuck: true
                worldedit.navigation.ascend: true
                worldedit.navigation.descend: true
                worldedit.navigation.ceiling: true
                worldedit.navigation.thru: true
                worldedit.navigation.jumpto: true
                worldedit.navigation.up: true
                worldedit.region.replace: true
                worldedit.region.stack: true
                worldedit.region.set: true
                worldedit.region.overlay: true
                worldedit.region.naturalize: true
                worldedit.region.walls: true
                worldedit.region.faces: true
                worldedit.region.smooth: true
                worldedit.region.move: true
                worldedit.regen: true
                worldedit.scripting.execute: true
                worldedit.analysis.count: true
                worldedit.selection.size: true
                worldedit.selection.shift: true
                worldedit.selection.chunk: true
                worldedit.selection.expand: true
                worldedit.selection.contract: true
                worldedit.selection.pos: true
                worldedit.selection.hpos: true
                worldedit.wand.toggle: true
                worldedit.wand: true
                worldedit.selection.outset: true
                worldedit.selection.inset: true
                worldedit.selection.distr: true
                worldedit.snapshots.list: true
                worldedit.snapshots.restore: true
                worldedit.brush.options.size: true
                worldedit.brush.options.mask: true
                worldedit.superpickaxe: true
                worldedit.superpickaxe.recursive: true
                worldedit.superpickaxe.area: true
                worldedit.tool.info: true
                worldedit.tool.tree: true
                worldedit.tool.replacer: true
                worldedit.tool.data-cycler: true
                worldedit.toll.flood-fill: true
                worldedit.brush.sphere: true
                worldedit.brush.cylinder: true
                worldedit.brush.clipboard: true
                worldedit.brush.smooth: true
                worldedit.brush.ex: true
                worldedit.tool.deltree: true
                worldedit.tool.farwand: true
                worldedit.tool.lrbuild: true
                worldedit.remove: true
                worldedit.fill: true
                worldedit.fill.recursive: true
                worldedit.drain: true
                worldedit.fixlava: true
                worldedit.fixwater: true
                worldedit.removeabove: true
                worldedit.removebelow: true
                worldedit.removenear: true
                worldedit.replacenear: true
                worldedit.snow: true
                worldedit.thaw: true
                worldedit.green: true
                worldedit.extinguish: true
                worldedit.butcher: true
                citizens.admin.info: true
                citizens.admin.debug: true
                citizens.admin.reload: true
                citizens.admin.save: true
                citizens.admin.clean: true
                citizens.basic.use.help: true
                citizens.basic.use.info: true
                citizens.basic.create: true
                citizens.basic.modify.move: true
                citizens.basic.modify.moveto: true
                citizens.basic.modify.copy: true
                citizens.remove: true
                citizens.basic.modify.rename: true
                citizens.basic.modify.color: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.resettext: true
                citizens.basic.modify.equip: true
                citizens.basic.use.teleport: true
                citizens.basic.modify.talkclose: true
                citizens.basic.modify.lookat: true
                citizens.basic.use.select: true
                citizens.basic.modify.setowner: true
                citizens.basic.use.list: true
                citizens.waypoints.path: true
                citizens.toggle.help: true
                citizens.toggle.all: true
                citizens.npccount.unlimited: true
                citizens.admin.override.setowner: true
                citizens.admin.override.remove: true
                citizens.admin.notifyupdates: true
                citizens.blacksmith.use.help: true
                citizens.blacksmith.use.status: true
                citizens.blacksmith.use.repair: true
                citizens.guard.use.help: true
                citizens.guard.modify.type: true
                citizens.guard.use.flags: true
                citizens.guard.modify.flags: true
                citizens.guard.modify.radius: true
                citizens.guard.modify.aggro: true
                citizens.healer.use.help: true
                citizens.healer.use.status: true
                citizens.healer.modify.levelup: true
                citizens.healer.use.heal: true
                citizens.quester.use.help: true
                citizens.quester.modify.quests.assign: true
                citizens.quester.modify.quests.remove: true
                citizens.quester.use.quests.view: true
                citizens.quester.use.quests.help: true
                citizens.quester.use.quests.abort: true
                citizens.quester.use.quests.status: true
                citizens.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.citizens.trader.modify.money: true
                citizens.trader.use.list: true
                citizens.trader.modify.unlimited: true
                citizens.trader.modify.stock: true
                citizens.trader.modify.clearstock: true
                citizens.wizard.use.help: true
                citizens.wizard.use.status: true
                citizens.wizard.modify.unlimited: true
                citizens.wizard.modify.mode: true
                citizens.wizard.use.locations: true
                citizens.wizard.modify.addloc: true
                citizens.wizard.modify.removeloc: true
                citizens.wizard.modify.command: true
            inheritance:
            -admin
        admin:
            permissions:
                permissions.*: true
                showcase.basic: true
                showcase.infinite: true
                showcase.finite: true
                showcase.exchange: true
                showcase.buy.finite: true
                showcase.buy.infinite: true
                showcase.admin: true
                telepads.use: true
                mcmmo.*: true
                telepads.create: true
                telepads.delete: true
                telepads.use: true
                telepads.link: true
                telepads.lph: true
                worldguard.god
                worldguard.ungod: true
                worldguard.heal: true
                worldguard.heal.other: true
                worldguard.slay: true
                worldedit.chunkinfo: true
                worldedit.listchunks: true
                worldedit.clipboard.load: true
                worldedit.clipboard.save: true
                worldedit.clipboard.copy: true
                worldedit.clipboard.flip: true
                worldedit.clipboard.rotate: true
                worldedit.clipboard.cut: true
                worldedit.clipboard.paste: true
                worldedit.clipboard.clear: true
                worldedit.region.replace: true
                worldedit.region.stack: true
                worldedit.region.set: true
                worldedit.region.overlay: true
                worldedit.region.naturalize: true
                worldedit.region.walls: true
                worldedit.region.faces: true
                worldedit.region.smooth: true
                worldedit.region.move: true
                worldedit.selection.size: true
                worldedit.selection.shift: true
                worldedit.selection.chunk: true
                worldedit.wand: true
                worldedit.superpickaxe: true
                worldedit.extinguish: true
                citizens.basic.use.help: true
                citizens.basic.use.info: true
                citizens.basic.create: true
                citizens.basic.modify.move: true
                citizens.basic.modify.moveto: true
                citizens.basic.modify.copy: true
                citizens.remove: true
                citizens.basic.modify.rename: true
                citizens.basic.modify.color: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.talkclose: true
                citizens.basic.modify.lookat: true
                citizens.basic.use.select: true
                citizens.basic.modify.setowner: true
                citizens.basic.use.list: true
                citizens.waypoints.path: true
                citizens.toggle.help: true
                citizens.toggle.all: true
                citizens.blacksmith.use.help: true
                citizens.blacksmith.use.status: true
                citizens.blacksmith.use.repair: true
                citizens.guard.use.help: true
                citizens.guard.modify.type: true
                citizens.guard.use.flags: true
                citizens.guard.modify.flags: true
                citizens.guard.modify.radius: true
                citizens.guard.modify.aggro: true
                citizens.healer.use.help: true
                citizens.healer.use.status: true
                citizens.healer.modify.levelup: true
                citizens.healer.use.heal: true
                citizens.quester.use.help: true
                citizens.quester.modify.quests.assign: true
                citizens.quester.modify.quests.remove: true
                citizens.quester.use.quests.view: true
                citizens.quester.use.quests.help: true
                citizens.quester.use.quests.abort: true
                citizens.quester.use.quests.status: true
                citizens.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.citizens.trader.modify.money: true
                citizens.trader.use.list: true
                citizens.trader.modify.unlimited: true
                citizens.trader.modify.stock: true
                citizens.trader.modify.clearstock: true
                citizens.wizard.use.help: true
                citizens.wizard.use.status: true
                citizens.wizard.modify.unlimited: true
                citizens.wizard.modify.mode: true
                citizens.wizard.use.locations: true
                citizens.wizard.modify.addloc: true
                citizens.wizard.modify.removeloc: true
                citizens.wizard.modify.command: true
                iConomy.plus: true
            inheritance:
            - member
        member:
            permissions:
                permissions.build: true
                showcase.basic: true
                showcase.buy.finite: true
                showcase.buy.infinite: true
                telepads.use: true
                citizens.basic.use.help: true
                citizens.basic.use.info: true
                citizens.basic.use.select: true
                citizens.blacksmith.use.repair: true
                citizens.blacksmith.use.help: true
                citizens.healer.use.help: true
                citizens.healer.use.heal: true
                citizens.quester.use.help: true
                citizens.quester.use.quests.view: true
                citizens.quester.use.quests.help: true
                citizens.quester.use.quests.abort: true
                citizens.trader.use.help: true
                citizens.wizard.use.help: true
                citizens.wizard.use.locations: true
                mcmmo.skills.*: true
                mcmmo.ability.*: true
                mcmmo.chat.partychat: true
                mcmmo.commands.party: true
                mcmmo.commands.whois: true
                iConomy.user: true
            inheritance:
            - guest
        guest:
            permissions:
                permissions.build: false
                telepads.use: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build. To become a member post an application on the thread.'
     
  17. Offline

    scar_

    First i think you need to have a group called default.
    Second i think you need to have your users on the begining of your file.
     
  18. Offline

    WolwX

    Hello :)

    @SpaceManiac or anyone who can answer me ^^

    There is a way to use a joker like * for add permissions to all plugins ?
     
  19. Offline

    epiqu1n

    Does this have the ability to bind certain permissions to certain areas?
     
  20. Offline

    gd119

    Hi,
    I have one question recently i start a new server and use multi-verse plugin, so i want to give access to construc on "world1" and don't want to give access on "world2" how can i set this permission on different world with a group of user without totaly limited the construction on any world.
    thk a lot
     
  21. Offline

    Gnomeo76

  22. Offline

    digitalink2008

    ive got a quick question.

    Code:
    users:
        digitalink2008:
            groups:
            - admin
        aknemesis:
            groups:
            - admin
        nug907:
            groups:
            - User
    groups:
        default:
            permissions:
                commandbook.*: false
                commandbook.motd: true
                commandbook.rules: true
                commandbook.spawn: true
                logblock.*: false
                lwc.*: false
                lwc.info: true
                lwc.lmits: true
                permissions.build: false
                residence.*: false
                simplereserve.kick.prevent: false
                worldedit.*: false
                worldguard.*: false
                xraydetection.admin: false
        admin:
            permissions:
                commandbook.*: true
                logblock.*: true
                lwc.*: true
                permissions.*: true
                residence.admin: true
                simplereserve.enter.kick: true
                simplereserve.kick.prevent: true
                thumbsapply.reload: true
                worldedit.*: true
                worldguard.blacklist.admin: true
                xraydetection.admin: true
            inheritance:
            - user
        user:
            permissions:
                commandbook.home.set: true
                commandbook.home.teleport: true
                commandbook.kit.kits.starter: true
                commandbook.kit.list: true
                commandbook.spawn: true
                lwc.protect: true
                permissions.build: true
                residence.create: true
                thumbsapply.notguest: true
                worldguard.region.info: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    debug: false
    
    If the user nug907 has groups -default and -user then he can not build. However, if he only has groups -user then he may build. Is that behavior correct? I would expect the permissions in -user to override -default based on the inheritance.

    Thanks much,
    D.
     
  23. Offline

    gabriel11798

    I would like someone to please explain the per-world permissions? i don't seem to get it.
     
  24. Offline

    Mr_Mellow

    Does this plugin even work? If not, what is a good substitute?
     
  25. Offline

    harls

    Somone help me PLS i get this error every time i start:(


    2012-01-20 09:44:42 [INFO] Starting minecraft server version 1.1
    2012-01-20 09:44:42 [INFO] Loading properties
    2012-01-20 09:44:42 [INFO] Starting Minecraft server on 5.35.9.222:25565
    2012-01-20 09:44:42 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    2012-01-20 09:44:42 [WARNING] The server will make no attempt to authenticate usernames. Beware.
    2012-01-20 09:44:42 [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.
    2012-01-20 09:44:42 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
    2012-01-20 09:44:43 [INFO] This server is running Craftbukkit version git-Bukkit-1.0.1-R1-42-gfd7b223-b1720jnks (MC: 1.1) (Implementing API version 1.1-R1-SNAPSHOT)
    2012-01-20 09:44:44 [INFO] Preparing level "world"
    2012-01-20 09:44:44 [INFO] Default game type: 0
    2012-01-20 09:44:44 [INFO] Preparing start region for level 0 (Seed: 2207305654150158624)
    2012-01-20 09:44:45 [INFO] Preparing spawn area: 65%
    2012-01-20 09:44:45 [INFO] Preparing start region for level 1 (Seed: 2207305654150158624)
    2012-01-20 09:44:46 [INFO] Preparing spawn area: 77%
    2012-01-20 09:44:46 [INFO] Preparing start region for level 2 (Seed: 2207305654150158624)
    2012-01-20 09:44:47 [INFO] AntiCreeper v2.0 - by Rothens
    2012-01-20 09:44:47 [INFO] Anticreeper v2.0 - STARTED
    2012-01-20 09:44:47 [INFO] [AuthMe] Authme 2.5 enabled
    2012-01-20 09:44:47 [INFO] [DJOpMobRejector v1.0] is now enabled!
    2012-01-20 09:44:47 [INFO] Bukkit version format changed. Version not checked.
    2012-01-20 09:44:48 [INFO] Loaded Essentials build 2.5.8 by: Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits
    2012-01-20 09:44:48 [INFO] Essentials: Using superperms based permissions.
    2012-01-20 09:44:48 [INFO] Loaded EssentialsSpawn build 2.5.8 by: essentials team
    2012-01-20 09:44:48 [INFO] [HeroicDeath] 1.11.2 enabled.
    2012-01-20 09:44:48 [INFO] [Lockette] Version 1.4.9 beta is being enabled! Yay! (Core version 1.3)
    2012-01-20 09:44:48 [INFO] [Lockette] Detected craftbukkit build [1720] ok.
    2012-01-20 09:44:48 [INFO] [Lockette] Using ops file for admin permissions.
    2012-01-20 09:44:48 [INFO] [Lockette] Ready to protect your containers.
    2012-01-20 09:44:48 [INFO] WorldEdit 5.0 enabled.
    2012-01-20 09:44:48 [INFO] WEPIF: Using the Bukkit Permissions API.
    2012-01-20 09:44:48 [INFO] WEPIF: Using the Bukkit Permissions API.
    2012-01-20 09:44:48 [INFO] WEPIF: Using the Bukkit Permissions API.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world) Single session is enforced.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world) TNT ignition is blocked.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world) Lava fire is blocked.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world) All fire spread is disabled.
    2012-01-20 09:44:48 [INFO] WorldGuard: Loaded configuration for world 'world"
    2012-01-20 09:44:48 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world_nether) TNT ignition is blocked.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2012-01-20 09:44:48 [INFO] WorldGuard: (world_nether) All fire spread is disabled.
    2012-01-20 09:44:48 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2012-01-20 09:44:49 [INFO] WorldGuard: (world_the_end) Single session is enforced.
    2012-01-20 09:44:49 [INFO] WorldGuard: (world_the_end) TNT ignition is blocked.
    2012-01-20 09:44:49 [INFO] WorldGuard: (world_the_end) Lighters are PERMITTED.
    2012-01-20 09:44:49 [INFO] WorldGuard: (world_the_end) Lava fire is blocked.
    2012-01-20 09:44:49 [INFO] WorldGuard: (world_the_end) All fire spread is disabled.
    2012-01-20 09:44:49 [INFO] WorldGuard: Loaded configuration for world 'world_the_end"
    2012-01-20 09:44:49 [INFO] WorldGuard: 0 regions loaded for 'world'
    2012-01-20 09:44:49 [INFO] WorldGuard: 0 regions loaded for 'world_nether'
    2012-01-20 09:44:49 [INFO] WorldGuard: 0 regions loaded for 'world_the_end'
    2012-01-20 09:44:49 [INFO] WorldGuard 5.4 enabled.
    2012-01-20 09:44:49 [INFO] [LagMeter 1.4] Enabled! Polling every 40 server ticks. Logging to F:\minecraft\server\plugins\LagMeter\lag.log
    2012-01-20 09:44:49 [INFO] [bAntiCaps] version 1.2.0 is enabled!
    2012-01-20 09:44:49 [INFO] Loading ColoredSigns
    2012-01-20 09:44:49 [INFO] PermissionsBukkit v1.1 is now enabled
    2012-01-20 09:44:49 [INFO] Essentials: Using PermissionsBukkit based permissions.
    2012-01-20 09:44:49 [INFO] [Lockette] Enabled link to plugin PermissionsBukkit for Groups, version 1.1
    2012-01-20 09:44:49 [INFO] [Jail] Loaded 1 jail zones.
    2012-01-20 09:44:49 [INFO] [Jail] Loaded 0 prisoners.
    2012-01-20 09:44:49 [INFO] [Jail] Loaded 3 cells.
    2012-01-20 09:44:49 [INFO] [Jail] Jail v2.0.3 loaded!
    2012-01-20 09:44:49 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2012-01-20 09:44:49 [INFO] Done (5.776s)! For help, type "help" or "?"
    2012-01-20 09:44:50 [INFO] /5.35.9.222:1819 lost connection
    2012-01-20 09:44:55 [INFO] evereadycod [/5.35.9.222:1828] logged in with entity id 147 at ([world] -212.1283133147618, 64.0, 278.83014214523513)
    2012-01-20 09:44:55 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
    2012-01-20 09:44:58 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
    2012-01-20 09:45:01 [INFO] evereadycod
    2012-01-20 09:45:01 [INFO] $SHA$f8ef848e3df5f2aa$1e18d3e2dce072ca7f9085d061bdfdced7d428b2bf3683b9f5aed1fe078b6811
    2012-01-20 09:45:01 [INFO] 5.35.9.222
    2012-01-20 09:45:01 [INFO] 1327012707312
    2012-01-20 09:45:01 [INFO] [AuthMe] evereadycod logged in!
    2012-01-20 09:45:09 [INFO] [PLAYER_COMMAND] evereadycod: /kick evereadycod
    2012-01-20 09:45:09 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
    at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:131)
    at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:91)
    at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
    at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
    at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:275)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:340)
    at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:161)
    at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:136)
    at org.bukkit.craftbukkit.entity.CraftPlayer.kickPlayer(CraftPlayer.java:194)
    at com.earth2me.essentials.PlayerWrapper.kickPlayer(PlayerWrapper.java:57)
    at com.earth2me.essentials.commands.Commandkick.run(Commandkick.java:32)
    at com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:90)
    at com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:84)
    at com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:450)
    at com.earth2me.essentials.Essentials.onCommand(Essentials.java:360)
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:40)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:168)
    at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:382)
    at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.java:768)
    at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:728)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:721)
    at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:96)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:108)
    at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:534)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:432)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:465)
    2012-01-20 09:49:59 [INFO] CONSOLE: Stopping the server..
    2012-01-20 09:49:59 [INFO] Stopping server
    2012-01-20 09:49:59 [INFO] AntiCreeper v2.0 - STOPPED
    2012-01-20 09:49:59 [INFO] [AuthMe] Authme 2.5 disabled
    2012-01-20 09:49:59 [INFO] [DJOpMobRejector v1.0] is now disabled!
    2012-01-20 09:49:59 [INFO] [HeroicDeath] 1.11.2 disabled.
    2012-01-20 09:49:59 [INFO] Lockette is being disabled... ;.;
    2012-01-20 09:49:59 [INFO] [Lockette] Closing all automatic doors.
    2012-01-20 09:49:59 [INFO] WorldGuard 5.4 disabled.
    2012-01-20 09:49:59 [INFO] [LagMeter 1.4] Disabled!
    2012-01-20 09:49:59 [INFO] [bAntiCaps] version 1.2.0 disabled!
    2012-01-20 09:49:59 [INFO] Unloading ColoredSigns
    2012-01-20 09:49:59 [INFO] PermissionsBukkit v1.1 is now disabled
    2012-01-20 09:49:59 [INFO] Saving chunks
    2012-01-20 09:50:02 [INFO] Stopping server
    2012-01-20 09:50:02 [INFO] Saving chunks
     
  26. Offline

    Purplemandown

    Ok, so I'm having a problem to which a quick search would not find an answer (except the question on this page that was not answered). I get the plugin going alright, but the darn thing doesn't give me permission to SNEEZE, much less do anything.

    Code:
    users:
        Purplemandown:
            groups:
            - Admin
            permissions:
     
    groups:
        default:
            default: true
            inheritance:
            permissions:
                - essentials.help: true
                - essentials.motd: true
                - essentials.rules: true
                - permissions.build: false
        Member:
            default: false
            inheritance:
            - default
            permissions:
                - essentials.home: true
                - essentials.sethome: true
                - permissions.group.help: true
                - permissions.group.list: true
                - permissions.group.players: true
                - permissions.player.help: true
                - permissions.player.groups: true
                - permissions.build: true
        Moderator:
            default: false
            inheritance:
            - Member
            - default
            permissions:
                - essentials.tp: true
                - essentials.tphere: true
                - permissions.*: true
        Admin:
            default: false
            inheritance:
            permissions:
                - essentials.help: true
                - essentials.motd: true
                - essentials.rules: true
                - essentials.home: true
                - essentials.sethome: true
                - permissions.group.help: true
                - permissions.group.list: true
                - permissions.group.players: true
                - permissions.player.help: true
                - permissions.player.groups: true
                - permissions.build: true
                - essentials.tp: true
                - essentials.tphere: true
                - permissions.*: true
    It's permissionsBukkit 1.2 (fix), craftbukkit build 1744(At least that's what it looks like it is). I want to get this sorted out before I bother inviting my friends/installing more plugins. Please give me a hand with this! (Checking through the console verifies that I am in the "Admin" group.)
     
  27. Offline

    Liger_XT5

    Permissions should look something like so:
    Code:
    groups:
        admin:
            permissions:
                ChestShop.admin: true
                citizens.admin.info: true
                citizens.admin.debug: true
    
     
  28. Offline

    coolo1

    No one will ever help me.
     
  29. whats the problem?
     
  30. Offline

    coolo1

    Basically everything, I converted my Groupmanager files and put them in the config, set up simple prefix, and then its like simpleprefix and PermissionsBukkit are ignored and your either op or not. No prefixes and if you are not op you cant use commands. If I try and set anyones group it just shows the permmisionsbukkit commands and does nothing else. Here is my PermmisionsBukkit config: http://pastebin.com/mKjfXQVm
    Here is my Simple Prefix config:http://pastebin.com/D8euzQD6
     
  31. Great Plugin :D
    Question:
    How can I make, that my plugin sets the group of a player?
    Example:
    Peter writes /IReadTheRules and then he is in group user
     

Share This Page