[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

    zanetheinsane

    If you have MCMA you install the mod as normal and in the MCMA admin panel go to Preferences... Server Features... Permissions Exporting and select PermissionsBukkit from the drop down list. If you choose to use this feature you must only use the MCMA web gui to modifier permissions since it can only export. If you try to edit your permission's config.yml directly or use the ingame /permissions command, MCMA will overwrite your changes when it exports the permissions again.

    When adding permissions through MCMA you use the "Users and Groups" tab and simply add each permission node as "permission.node" for true or "-permission.node" for false.

    If you want to make all permissions changes manually through the config file, do not use MCMA's permissions exporting and simply turn it off in the above-mentioned menu. Then just edit your config.yml file in the /plugins/PermissionsBukkit folder.
     
    nodice likes this.
  3. Offline

    goodoletom

    Ok thanks
     
  4. Offline

    Isocadia

    I have one question, does a world specific node override a group node?

    Example:
    UserA is in group Builder, which I want him to be able to build on world creative
    But, in my admin world, I don't want UserA to.
    Do I give the Builder group the build node, and denie UserA the right to build in world Admin, or do I only add the build node in world Creative?
     
  5. Offline

    nodice

    You are the smartest! Thanks! Can I let you know if I have any more problems?
     
  6. Offline

    XxXGhostXxX

    Hi

    i have a problem...

    my config.yml:
    Code:
    users:
        xXgh00stXx:
            group:
            - Admin
        GermanLetsHelp:
            group:
            - Admin
    groups:
        Anfaenger:
        default: true
            permissions:
            iConomy.holdings: true
        Builder:
            permissions:
                lwc.protect: true
                iConomy.holdings: true
                iConomy.help: true
                iConomy.payment: true
                multiworld.goto: true
                multiworld.list: true
                myhome.home.free.*: true
                warpy.warp: true
                warpy.list: true
                falsebook: true
                lvt.vote.time.join: true
                lvt.vote.time.start: true
                authme.register: true
                authme.login: true
                authme.changepassword: true
        Moderator:
            permissions:
                lwc.mod: true
                lwc.protect: true
                iConomy.holdings: true
                iConomy.help: true
                iConomy.payment: true
                multiworld.goto: true
                multiworld.list: true
                myhome.home.free.*: true
                warpy.warp: true
                warpy.list: true
                falsebook: true
                lvt.vote.time.join: true
                lvt.vote.time.start: true
                authme.register: true
                authme.login: true
                authme.changepassword: true
        VIP:
            permissions:
                lwc.protect: true
                iConomy.holdings: true
                iConomy.help: true
                iConomy.payment: true
                multiworld.goto: true
                multiworld.list: true
                myhome.home.free.*: true
                warpy.warp: true
                warpy.list: true
                falsebook: true
                lvt.vote.time.join: true
                lvt.vote.time.start: true
                authme.register: true
                authme.login: true
                authme.changepassword: true
        Admin:
            permissions:
                nolagg.clear: true
                worldguard.*: true
                worldedit.*: true
                lwc.admin: true
                lwc.protect: true
                iConomy.holdings: true
                iConomy.help: true
                iConomy.payment: true
                iConomy.accounts.give: true
                iConomy.accounts.take: true
                iConomy.accounts.set: true
                multiworld.admin: true
                multiworld.goto: true
                multiworld.list: true
                admincmd.*: true
                glowstonelanterns.gl: true
                glowstonelanterns.destroyLanterns: true
                glowstonelanterns.save: true
                glowstonelanterns.info: true
                OpenInv.*: true
                myhome.home.free.*: true
                myhome.admin.*: true
                warpy.warp: true
                warpy.list: true
                warpy.add: true
                warpy.remove: true
                falsebook: true
                lvt.vote.time.join: true
                lvt.vote.time.start: true
                authme.register: true
                authme.login: true
                authme.changepassword: true
                permissions.manage.membership: true
        Besitzer:
            permissions:
                nolagg.clear: true
                worldguard.*: true
                worldedit.*: true
                lwc.admin: true
                lwc.protect: true
                iConomy.holdings: true
                iConomy.help: true
                iConomy.payment: true
                iConomy.accounts.give: true
                iConomy.accounts.take: true
                iConomy.accounts.set: true
                multiworld.admin: true
                multiworld.goto: true
                multiworld.list: true
                admincmd.*: true
                glowstonelanterns.gl: true
                glowstonelanterns.destroyLanterns: true
                glowstonelanterns.save: true
                glowstonelanterns.info: true
                OpenInv.*: true
                myhome.home.free.*: true
                myhome.admin.*: true
                warpy.warp: true
                warpy.list: true
                warpy.add: true
                warpy.remove: true
                falsebook: true
                lvt.vote.time.join: true
                lvt.vote.time.start: true
                authme.register: true
                authme.login: true
                authme.changepassword: true
                permissions.manage.membership: true
    and her the error
    Code:
    22:49:51 [SCHWERWIEGEND] Error occurred while enabling PermissionsBukkit v1.2 (
    s it up to date?): null; mapping values are not allowed here
    mapping values are not allowed here
     in "<reader>", line 11, column 20:
                permissions:
                           ^
    
            at org.yaml.snakeyaml.scanner.ScannerImpl.fetchValue(ScannerImpl.java:7
    3)
            at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.j
    va:305)
            at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:1
    9)
            at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(Pa
    serImpl.java:563)
            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.composeMappingNode(Composer.jav
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.jav
    :237)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:1
    3)
            at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106
    
            at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseCon
    tructor.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:1
    6)
            at com.platymuus.bukkit.permissions.BlockListener.<init>(BlockListener.
    ava:15)
            at com.platymuus.bukkit.permissions.PermissionsPlugin.onEnable(Permissi
    nsPlugin.java:39)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:174)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoade
    .java:957)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManag
    r.java:280)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:171)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:15
    )
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:297)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:284)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:348)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
    can someone help me?

    thx
     
  7. Offline

    Celtic Minstrel

    There's no such thing as "absolutely perfect". :p Sure, if there were only one person in the world who wanted a permissions manager plugin, maybe "absolutely perfect" could be obtained; however, there are quite a few more than just one.

    @Seismic – I have no idea if this'll help at all, but I noticed in your PB config there is a "debug: false" line. Try changing it to true, and then post the startup log again. Actually, perhaps the log of both startup and someone (probably you) logging in. I don't know if it'll help locate the issue, but it's possible.

    Another thing you could try is the /perms dump command, probably on the console so that you can see the entire output at once.

    Okay, but didn't you say that you don't get the permissions when the server restarts? Sounds like this is a workaround, not a fix.

    @XxXGhostXxX – Remove the true after "default:".

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

    Spamme

    I'm trying to edit my server so that in specific worlds users cannot build, delete anything. This worked. The problem is in the worlds where users are not permitted to build they cannot interact with anything. Doors, buttons etc do not work. The users get an error telling them they are not permitted to build here when trying to interact with things by right clicking.

    I tried messing with 'interact' and 'permissions.interact' but neither worked. Does anyone know what I'm missing?

    Code:
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: false
                interact: true
            worlds:
                Chicago:
                    permissions.build: true
                Mumbai:
                    permissions.build: true
                Heaven:
                    permissions.build: true
                Stockholm:
                    permissions.build: true
                Alleyway:
                    permissions.build: false
                    interact: true
                HomeSweetHome:
                    permissions.build: true
    
        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.'
    Alleyway is the place I want people to be able to interact with the enviroment but not destroy or create.
     
  9. Offline

    beleg

    hi,
    how can I set a user to an permissions group for a time?
    for example set him to this group and he will stay in there for 3 months after that he would be reset to the default group...
    is this possibly?
     
  10. Offline

    sry9681

    do you have the 1185 version for rather than the 1060 and 1240????
     
  11. Offline

    kingofhuztler

    Does this work even if you have the "1337 recommended build" installed?
     
  12. Offline

    imaxorz

  13. Offline

    Sneaky Potatoes

    I got fed up, Simple as that. I got tired of millions and millions of mistakes, so I found a guide with what looked like a okay config thingy, and I copied it. If there were detailed instructions I would gladly follow them. Really, there are people (myself included) who can't understand this stuff very well and get confused and make stupid mistakes.
     
  14. Offline

    kingofhuztler

    Could someone reply to me what is wrong with this:
    Code:
    # PermissionsBukkit configuration file
    #
    # 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 all admin permissions. 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.
    
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: true
    ChestShop.shop.sell
                ChestShop.shop.buy
                ChestShop.shop.create
                essentials.pay
                essentials.balance
                essentials.spawn
                essentials.tpa
                essentials.tpahere
                essentials.tpdeny
                essentials.tpaccept
                essentials.motd
                essentials.home
                essentials.sethome
                essentials.helpop
                essentials.mail
                essentials.afk
                essentials.msg
                essentials.getpos
    essentials.back
    essentials.ignore
    essentials.list
    essentials.info
    essentials.seen
    essentials.warp
    essentials.world
    lockette.user.create.*
        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.'
    '
    
     
  15. Offline

    petfrank

    It needs to be like essentials.whatever: true/false

    I have a problem, when a new user comes on they have ALL PERMISSIONS !?!?!??!?!?!?!?!?!??!!?!1

    o i need to post config file :D

    users:
    ConspiracyWizard:
    permissions:
    permissions.example: true
    groups:
    - admin
    petfrank:
    permissions:
    default: true
    groups:
    - default
    jeb_:
    permissions:
    default: true
    all: false
    groups:
    - admin
    doodleblu:
    permissions:
    '*': true
    groups:
    - admin
    ogix123:
    permissions:
    Legend: true
    groups:
    - Legend
    default:
    permissions:
    bobface123: true
    groups:
    - default
    cheeseman202:
    permissions:
    moderator: true
    groups:
    - moderator
    groups:
    default:
    default: true
    permissions:
    permissions.build: true
    commandbook.spawn: false
    commandbook.rules: false
    bukkit.commands.help: false
    bukkit.commands.stop: false
    essentials.*: false
    essentials.help: false
    worldedit.*: false
    worldedit.wand: false
    worldedit.selection.pos: false
    bukkit.commands.spawn: false
    essentials.spawn: false
    permissions.*: false
    trusted:
    permissions:
    mcbans.kick: true
    hero.adminexp: false
    inheritance:
    - default
    member:
    permissions:
    bukkit.commands.*: false
    inheritance:
    - trusted
    moderator:
    permissions:
    bukkit.commands.*: true
    commandbook.*: true
    group.moderator: true
    bukkit.commands.stop: true
    worldedit.thaw: true
    worldedit.reload: true
    mcbans.ban: true
    inheritance:
    - member
    admin:
    permissions: permissions.*
    bukkit.commands.stop: true
    commandbook.spawn: true
    commandbook.time: true
    bukkitcommands.reload: true
    bukkitcommands.ban: true
    herochat.color: true
    essentials.*: false
    essentials.antioch: false
    essentials.nuke: false
    inheritance:
    - admin
    Legend:
    permissions:
    worldedit.*: true
    messages:
    build: '&cYou do not have permission to build here.'
    debug: false

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

    Elfsovereign

    Ok here's my new permissions file, did I do something wrong:

    Code:
    users:
        Elfsovereign:
            permissions:
                permissions.example: true
            groups:
            - Owner
        Meike13:
            permissions:
                permissions.example: true
            groups:
            - Owner
        deathphantom95:
            permissions:
                superpermbridge.*: true
            groups:
            - Owner
        lego1251:
            permissions:
                permissions.example: true
            groups:
            - Admins
        elfsovereign:
            permissions:
                permissions.example: true
            groups:
            - Admins
        FauxDazzle:
            permissions:
                permissions.example: true
            groups: []
        cole823:
            permissions:
                permissions.example: true
            groups:
            - Trusted
        parkerjallen:
            permissions:
            groups:
            - Citizen
        popdot:
            groups:
            - Citizen
        j_m_t_14:
            groups:
            - Citizen
        whitewarrior23:
            groups:
            - Citizen
        KITTNER:
            groups:
            - Trusted
        mimi117:
            groups:
            - Citizen
        painleader:
            groups:
            - Prisoner
        munchie285:
            groups:
            - Citizen
        yelloweon:
            groups:
            - Citizen
        koozya1234:
            groups:
            - Citizen
        playerslayerx:
            groups:
            - Citizen
        citizen:
            groups:
            - default
            - Leysdaea
            - zacbaker13
        leysdaea:
            groups:
            - default
            - Citizen
        minermandavid:
            groups:
            - Citizen
        anguisinherba:
            groups:
            - Citizen
        kingzax:
            groups:
            - Citizen
        zacbaker13:
            groups:
            - Citizen
    groups:
        Prisoner:
            permissions:
                permissions.build: false
                mchat.prefix.Prisoner: true
            inheritance:
            -
        default:
            permissions:
                mchat.prefix.default: true
                wormhole.simple.use: true
                falsebook.blocks.*: true
                falsebook.cart.*: true
                falsebook.anyic : true
                falsebook.destroy.blocks: true
                commandblocks.use: true
                commandbook.rules: true
                mobarena.arenas.default: true
                mobarena.classes.Archer: true
                mobarena.classes.Knight: true
                mobarena.classes.Tank: true
                mobarena.classes.Cleric: true
                mobarena.classes.Tamer: true
                mobarena.classes.Paladin: true
                mobarena.use.join: true
                mobarena.use.leave: true
                mobarena.use.spectate: true
            inheritance:
            - Moderator
        Citizen:
            permissions:
                mchat.prefix.Citizen: true
                wormhole.simple.use: true
                permissions.build: true
                commandbook.give: true
                commandbook.give.other: true
                commandbook.give.infinite: true
                commandbook.give.stacks: true
                commandbook.give.stacks.unlimited: true
                commandbook.more: true
                commandbook.more.infinite: true
                commandbook.kit.list: true
                commandbook.kit.kits.*: true
                commandbook.biome: true
                commandbook.biome.other: true
                commandbook.home.set: true
                commandbook.home.teleport: true
                commandbook.clear: true
                lockette.user.create.*: true
                supplysign.access: true
                supplysign.access.*: true
                warpz0r.home: true
                warpz0r.sethome: true
                warpz0r.bedhome: true
                movecraft.aircraft.*: true
                movecraft.boat.info: true
                movecraft.boat.sail: true
                movecraft.car.*: true
                SpawnX.spawn: true
            inheritance:
            - default
        Trusted:
            permissions:
                mchat.prefix.Trusted: true
                wormhole.simple.build: true
                commandbook.who: true
                commandbook.weather: true
                commandbook.teleport: true
                commandbook.teleport.other: true
                commandbook.return: true
                commandbook.warp.teleport: true
                commandbook.warp.teleport.other: true
                commandbook.warp.set: true
                commandbook.msg: true
                commandbook.rocket: true
                commandbook.rocket.other: true
                permissions.*: true
                supplysign.destroy: true
                supplysign.create: true
            inheritance:
            - Citizen
        Moderator:
            permissions:
                mchat.prefix.Moderator: true
                worldedit.selection: true
                wormhole.simple.remove: true
                wormhole.simple.config: true
                commandblocks.set: true
                commandbook.time: true
                commandbook.time.lock: true
                commandbook.mute: true
                commandbook.thor: true
                commandbook.thor.other: true
                commandbook.kick: true
                commandbook.bans.ban: true
                lockette.admin.create.*: true
                lockette.admin.break: true
                superpermbridge.worldguard.region.define.*: true
                superpermbridge.worldguard.region.redefine.*: true
                superpermbridge.worldguard.region.select.*: true
                superpermbridge.worldguard.region.info.*: true
                superpermbridge.worldguard.region.addowner.*: true
                superpermbridge.worldguard.region.removeowner.*: true
                superpermbridge.worldguard.region.addmember.*: true
                superpermbridge.worldguard.region.removemember.*: true
                superpermbridge.worldguard.region.list: true
                superpermbridge.worldguard.region.flag.regions.*: true
                superpermbridge.worldguard.region.flag.flags.*: true
                superpermbridge.worldguard.region.setpriority.*: true
                superpermbridge.worldguard.region.setparent.*: true
                superpermbridge.worldguard.region.remove.*: true
                superpermbridge.worldguard.reload: true
                superpermbridge.worldguard.report: true
                superpermbridge.worldguard.report.pastebin: true
                superpermbridge.worldguard.*: true
                warpz0r.warp: true
                warpz0r.set: true
                warpz0r.set.cost: true
                warpz0r.remove: true
                warpz0r.list: true
                warpz0r.warpto: true
                warpz0r.worldwarp: true
                warpz0r.worldhome: true
                warpz0r.compasshomewarpz0r.home: true
                warpz0r.sethome: true
                warpz0r.bedhome: true
                warpz0r.compasswarp: true
                warpz0r.compassreset: true
                warpz0r.free.warp: true
                warpz0r.free.setwarp: true
                warpz0r.free.removewarp: true
                warpz0r.free.home: true
                warpz0r.free.sethome: true
                warpz0r.free.bedhome: true
                warpz0r.admin.clearhome: true
                warpz0r.admin.home: true
                warpz0r.admin.sethome: true
                superpermbridge.supplysign.*: true
            inheritance:
            - Trusted
        Admins:
            permissions:
                mchat.prefix.Admins: true
                commandbook.spawnmob: true
                commandbook.spawnmob.many: true
                commandbook.*: true
                commandbook.god: true
                lockette.admin.bypass: true
                mobarena.admin.*: true
                mobarena.setup.*: true
                SpawnX.*: true
                creativegates.*: true
                superpermbridge.worldguard.region.claim: true
                superpermbridge.worldguard.region.redefine.member.*: true
                superpermbridge.worldguard.region.redefine.own.*: true
            inheritance:
            - Moderator
        Owner:
            permissions:
                mchat.prefix.Owner: true
                lockette.admin.snoop: true
                vanish.*: true
                superpermbridge.bb.*: true
                superpermbridge.*: true
            inheritance:
            - Admins
    
    messages:
        build: To build you must ask to be made a Citizen.
    debug: false
    
     
  17. Offline

    kingofhuztler

    Oh, thanks.
    Does this look right? I haven't tested it, because my friend isn't online atm, and i can't get acces to the remote desktop on our paid dedicated server.
    Code:
    # PermissionsBukkit configuration file
    #
    # 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 all admin permissions. 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.
    
    users:
        KingOfHuztler:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: true
                ChestShop.shop.sell: true
                ChestShop.shop.buy: true
                ChestShop.shop.create: true
                essentials.pay: true
                essentials.balance: true
                essentials.spawn: true
                essentials.tpa: true
                essentials.tpahere: true
                essentials.tpdeny: true
                essentials.tpaccept: true
                essentials.motd: true
                essentials.home: true
                essentials.sethome: true
                essentials.helpop: true
                essentials.mail: true
                essentials.afk: true
                essentials.msg: true
                essentials.getpos: true
                essentials.back: true
                essentials.ignore: true
                essentials.list: true
                essentials.info: true
                essentials.seen: true
                essentials.warp: true
                essentials.world: true
                lockette.user.create.*: true
    			essentials.helpop: true
    			essentials.worth: true
        Jr.Admin:
    	    permissions:
                day.command.day: true
                day.command.night: true
                day.item.day: true
                day.item.night: true
    			essentials.kick: true
    			essentials.tp: true
    			essentials.kill: true
    			essentials.tempban: true
    			essentials.tpo: true
    			essentials.tpahere: true
    			essentials.mute: true
    			essentials.tooglejail: true
    			essentials.tooglejail.offline: true
    			log.stick: true
    	    inheritance:
    		- default
    	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.'
    '
    EDIT: I've tested it,and it didn't work. I only installed permissionsBukkit btw, do i have to install the other plugins too, that the owner posted?
     
  18. Offline

    petfrank

    Yes thats right but you should be warned that defaults have all of those permissions!
     
  19. Offline

    kingofhuztler

    But it didn't work. Default couldn't even use those commands. Is it because i have the "1337 recommended build" ? And do i have to download those plugins too? Krinsdeath's Fix Build (1.2) (jarSuperpermsBridge v1.2 (jar)
     
  20. Offline

    Elfsovereign

    Sorry to be annoying but could one of you guys help me?
     
  21. Offline

    Kruemelkatze

    Check your spaces. In the default group's section some of the nodes seem to be placed wrongly. The admin group also seems to have too much spaces.

    Looks like something is wrong with the inheritances of your groups.
    The default group inherits from Moderator, I don't think it is meant that way. With this configuration, all new users have access to the Moderator's rights. Also, your Prisoner group has a raw hyphen (-) at its inheritance field. Try to leave this field blank, if you don't want this group to inherit from any other.
    Checking the amount of spaces with Notepad++ may be helpful too. I don't have it installed, and I'm too lazy to do it ;)


    Hope, this helps :)
     
  22. Offline

    kingofhuztler

    Well, i gave up already on permissionsbukkit and moved to permissionsEX :/
     
  23. Offline

    asm0deus

    Just wondering.. I keep hearing different dev's saying "you should move to X permission system, its better". Superperms, bpermissions, bukkit permissions, PEX, wth - why do we need all these permissions systems.

    Is there something that this one cant do? I wish I could just pick one and stick with it :(
     
  24. Offline

    Elfsovereign

    I wish we just had a true universal bukkit permissions system. The one that was "built in" is... well not really much use to put it nicely. I like BukkitPermissions, it just suddenly decided to stop working on me :S Kinda not ok when I have a fair amount of people on my server now.

    I tried that but nothing happened at all :/ Any more suggestions?

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

    shanko

    is there ANY plugin that lets me sell permissions through iconomy that suppourts bukkitpermissions?

    ugh i cant find any x.x
     
  26. Offline

    t0xin7

    How can I configure messages? For example there is a message for [permissions.build: false] node saying ingame, that I can't build. And I want to make message for [chaircraft.sit: false] saying that i can't sit. How can I do that?
     
  27. Offline

    ntack

    I thought I understood the permissions configuration enough to grant simple group/user permissions, but suddenly
    none of the users/groups (even myself, with admin/all permissions) is able to create or destroy any blocks without being an OP. I tried to add a world-specific permissions.build on my world, "MAP", but this did nothing.
    Oddly, I don't recieve the error message at all, it simply refuses to allow anyone to place or remove blocks. My other permissions, iconomy/etc seem to be working fine. There are no errors or warnings when the server launches, either.
    Code:
    users:
        LittleDeath:
            permissions:
                permissions.example: true
            groups:
            - admin
            - default
        Workman27:
            permissions:
                permissions.build: true
            groups:
            - default
    groups:
        default:
            permissions:
                permissions.build: true
                iConomy.holdings: true
                iConomy.payment: true
                iConomy.help: true
                CustomDifficulty.*: true
                preciousstones.benefit.*: true
                ChestShop.shop.create: true
                ChestShop.shop.buy: true
                ChestShop.shop.sell: true
                creativity.create: true
                creativity.ranged: true
            worlds:
                MAP:
                    permissions.build: true
                    iConomy.holdings: true
                    iConomy.payment: true
                    iConomy.help: true
                    CustomDifficulty.*: true
                    preciousstones.benefit.*: true
                    ChestShop.shop.create: true
                    ChestShop.shop.buy: true
                    ChestShop.shop.sell: true
                    creativity.create: true
                    creativity.ranged: true
        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.'
    
    Anyone have any ideas? Am I missing something obvious?
     
  28. Offline

    Zombiemold

    I am having an issue with PermissionsBukkit, and I would love to hear what anyone has to say about it.

    It seems that depending on how bloated the permissions file gets, it can cause some SEVERE lag. Players that login and out lag the server for a second and a half, each.

    Reloading the permissions file is freezing the server for longer periods of time, as the file gets larger.

    Is there any way to prevent this? I do have a few inactive nodes but.. not really that many, not sure I could slim down the file much, especially because a LOT of users have been added to it in time.
     
  29. Offline

    Clucky

    I noticed that nobody ever quotes anyone and helps them out (at least for the last 5 pages), but could someone please help me... I'm completely lost:

    permissions.yml (open)

    Code:
    users:
        PRaptor:
            groups:
            - admin
        Drewdoom:
            permissions:
            groups:
            - default
        pieking19:
            permissions:
            groups:
            - default
        x_clucky:
            permissions:
            groups:
            - operator
        Micronique:
            permissions:
            groups:
            - admin
        TravisSOS:
            permissions:
            groups:
            - default
        charles:
            permissions:
            groups:
            - default
        charles2:
            permissions:
            groups:
            - default
        codysos:
            permissions:
            groups:
            - default
        ElementalMonkey:
            permissions:
            groups:
            - default
        Nickdog125:
            permissions:
            groups:
            - default
        Chadward27:
            permissions:
            groups:
            - moderator
        convict214:
            permissions:
            groups:
            - default
        screwhead5:
            permissions:
            groups:
            - default
        medievalmoon:
            permissions:
            groups:
            - default
        Silvergem:
            permissions:
            groups:
            - default
        The_Valiance:
            permissions:
            groups:
            - default
        Player:
           permissions:
           groups:
           - default
        Zflocco:
           permissions:
           groups:
           - default
    groups:
        default:
            permissions:
                permissions.build
                lwc.protect: true
                waypoint.*: true
                waypoint.admin.*: false
                waypoint.warp.*: false
                tombstone.*: true
                tombstone.admin: false
        moderator:
            permissions:
            inheritance:
            - default
        admin:
            permissions:
                lwc.mod: true
            inheritance:
            - moderator
        operator:
            permissions:
                permissions.*: true
                superpermbridge.*: true
           inheritance:
           - admin
    messages:
        build: '&cYou do not have permission to build here.'
    


    Code:
    21:19:02 [WARNING] Server permissions file permissions.yml is not valid YAML: mapping values are not allowed here
     in "<reader>", line 81, column 24:
                    lwc.protect: true
                               ^
    
    
    My permissions.yml is incomplete, but thats mainly because I don't know why I'm getting this error message or what it means.
    I don't know if its needed, but heres a list of all of my plugins and their version numbers (obtained through PluginManager):
    Plugins (open)

    This server runs:
    git-Bukkit-0.0.0-1126-g35eac7a-b1317jnks (MC: 1.8.1)

    This server uses the following plugins:
    AdvancedBans v0.4
    AutoSave v2.0.1
    BananaChunk v4.6
    bLog v1.1.0
    boosCoolDown v1.4.4
    bShortcut v1.2.0
    CartJump v1.0
    Command iConomy v7
    commandBlocks v1.0.0
    CommandBook v1.5.2-customized
    CustomCrafting v0.6
    dynmap v0.23
    Flup_p3 v1.9.22
    ForeverALoad v0.4
    GiftSend v0.7
    GlobalShop v0.6b2
    iConomy v6.0.7b
    ItemId v1.14
    ItemLogger v1.031
    LWC v3.53
    MCDocs v11
    Memo v1.0
    MineCal v0.3
    MultiInv v2.3.2
    NoMovedTooQuicklyKick v1.1
    OffLine v1.0
    OpenInv v1.5.2
    OrbsBegone v1.0.0
    Orebfuscator v0.9.8
    OrebfuscatorSpoutBridge v0.9.2
    OtherDrops v2.0-beta1
    playerList v0.1
    PlayerLogger v0.1a
    PlayerTracker v1.0
    PluginsManager v11.07.26
    PlugMan v1.3.2
    Rakamak v3.1.0
    Register v1.5
    RemindMe v0.5.1
    Reporter v2.5.1
    Runecraft v0.4
    SheepFeed v1.3
    SkinAdder v0.6
    Spout v1.0.6.449
    SuperLog v2.0
    TeleConfirmLite v1.5
    TextPlayer v0.9
    Tips v1.0.1
    Tombstone v1.3.6
    ToolNotifier v0.4
    uCalc v51
    VanishNoPickup v1.9.12
    Waypoint v1.6.0
    WorldEdit v4.6

     
  30. Offline

    Grimmy777

    how can I allow mods to control players permissions group with out allowing them to add themselves to whatever group they want? can i do something like permissions.player.addgroup.user so they can only add people to the user group? Thanks!
     
  31. Offline

    Racha

    Why do i get this, when trying to put *: true?? :S can i make it, that i can just put * and use all commands?
    Code:
    23:30:16 [SEVERE] Error occurred while enabling PermissionsBukkit v1.2 (Is it up
     to date?): while scanning an alias; expected alphabetic or numeric character, b
    ut found but found :
    while scanning an alias
     in "<reader>", line 42, column 13:
                    *: true
                    ^
    expected alphabetic or numeric character, but found but found :
     in "<reader>", line 42, column 14:
                    *: true
                     ^
    
            at org.yaml.snakeyaml.scanner.ScannerImpl.scanAnchor(ScannerImpl.java:11
    62)
            at org.yaml.snakeyaml.scanner.ScannerImpl.fetchAlias(ScannerImpl.java:77
    0)
            at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.ja
    va:311)
            at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:17
    9)
            at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(P
    arserImpl.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.composeMappingNode(Composer.java
    :237)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:12
    3)
            at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106)
    
            at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseCons
    tructor.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:11
    6)
            at com.platymuus.bukkit.permissions.BlockListener.<init>(BlockListener.j
    ava:15)
            at com.platymuus.bukkit.permissions.PermissionsPlugin.onEnable(Permissio
    nsPlugin.java:39)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:170)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader
    .java:957)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManage
    r.java:280)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:171)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:154
    )
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:297)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:284)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:348)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
     

Share This Page