[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

    xtyro

  3. Offline

    RustyDagger

    How deep will the sub nodes go for the superperms bridge thingy cause i have some complex nodes like.

    plugin.user.portal.*

    Would that still work can i now just stick the superpermbridge. infront of any of my * permissions nodes and have it work or is there a limit to how deep it can get down to?....

    personaly im really pissed about how slow plugin devs are at moving to superperms. its not that effort in the long run it will be easier for the devs...
     
  4. Offline

    _Zenith_

    Would you consider splitting up build into two separate permissions? (build and interact)
    It would make my life a lot easier, but I also think it would make a good addition.
     
  5. Offline

    John Kapsis

    Call me stupid BUT:

    Lets say i have a "gallery" type server/world.
    Lets say i want to use Permissions from Yeti
    Lets say i want to have players able to push buttons and levers BUT NOT have them able to place and remove blocks!
    How do i do this?
     
  6. Offline

    xtyro

    use WorldGuard or something similar, define regions with flag: use = allow & build = false.
     
    John Kapsis likes this.
  7. Offline

    John Kapsis

    Thank you!
     
  8. Offline

    Sonorpearl

    Hello, how I can define that a User only have a Group on a specific world?
     
  9. Offline

    CrispyDiamonds

    yes after everynode put ":true"
    For Example "commandbook.rules:true"
     
  10. Offline

    Xertez

    • permissions.player.setperm - Allows use of /permissions player addgroup.
    • permissions.player.unsetperm - Allows use of /permissions player removegroup.
    shouldn't it be "Allows use of /permissions player setperm" and vice-versa for ".unsetperm" instead of "Allows use of /permissions player addgroup."?
     
  11. Offline

    CrispyDiamonds

    Code:
    users:
      philipop1678:
         permissions:
         groups:
            - Master-Builder
      CrispyDiamonds:
         permissions:
         groups:
            - Master-Builder
      soccer4128:
         permissions:
         groups:
            - Moderator
      ToxicLax:
         permissions:
         groups:
            - Master-Builder
      yogpersoneabo:
         permissions:
         groups:
            - Master-Builder
    groups:
      default:
        permissions:
          foo.bar: true
          essentials.spawn: true
          essentials.chat: true
          essentials.signs.disposal.use: true
          essentials.signs.disposal.create: true
          'iConomy.bank.*': true
          iConomy.access: true
          iConomy.rank: true
          iConomy.list: true
          iConomy.payment: true
          'essentials.protect.damage.*': true
          'essentials.signs.use.*': true
          chaircraft.sit: true
          tombstone.use: true
          tombstone.lwc: true
          tombstone.sign: true
          tombstone.quickloot: true
          essentials.motd: true
          essentials.rules: true
          mchat.prefix.cfcdGuestcf: true
          permissions.build: true
      Builder:
        permissions:
          icoland.admin.notax: true
          'worldguard.region.*': true
          worldedit.wand: true
          essentials.help: true
          lwc.protect: true
          icoland.basic.select: true
          icoland.basic.info: true
          icoland.misc.canbuild: true
          wolfpound.use: true
          essentials.warp: true
          essentials.tpa: true
          essentials.tpdeny: true
          essentials.tpaccept: true
          essentials.sethome: true
          essentials.home: true
          essentials.back: true
          essentials.protect: true
          essentials.back.ondeath: true
          essentials.warp.list: true
          'iConomyChestShop.*': true
          personal.warps.use: true
          'lockette.user.create.*': true
          'SignShop.Signs.*': true
          tombstone.freechest: true
          tombstone.freesign: true
          residence.create: true
          essentials.me: true
          mchat.prefix.cfc1Buildercfc1: true
          permissions.build: true
        inheritance:
          - Guest
      Master-Builder:
        permissions:
          tombstone.large: true
          mchat.prefix.cfc4Master-Buildercfcc: true
          mchat.suffix.cc: true
          permissions.build: true
        inheritance:
          - Builder
      Moderator:
        permissions:
          'essentials.*': true
          'worldedit.*': true
          'lockette.*': true
          'rocketboots.*': true
          'BigBrother.*': true
          mchat.prefix.cfc2Modcfca: true
          mchat.suffix.c1: true
          permissions.build: true
        inheritance:
          - Master-Builder
      Admin:
        permissions:
          mchat.prefix.cfc6Admincfce: true
          mchat.suffix.c1: true
          permissions.build: true
        inheritance:
          - Moderator
    messages:
        build: '&cYou do not have permission to build here.'
    
    is anything wrong because i get this error
    Code:
    13:52:19 [SEVERE] Could not pass event PLAYER_MOVE to Residence
    java.lang.NullPointerException
            at com.bekvon.bukkit.residence.permissions.PermissionManager.getGroupNam
    eByPlayer(PermissionManager.java:102)
            at com.bekvon.bukkit.residence.protection.FlagPermissions.playerHas(Flag
    Permissions.java:181)
            at com.bekvon.bukkit.residence.protection.ResidencePermissions.playerHas
    (ResidencePermissions.java:56)
            at com.bekvon.bukkit.residence.protection.ResidencePermissions.playerHas
    (ResidencePermissions.java:47)
            at com.bekvon.bukkit.residence.listeners.ResidencePlayerListener.onPlaye
    rMove(ResidencePlayerListener.java:302)
            at org.bukkit.plugin.java.JavaPluginLoader$7.execute(JavaPluginLoader.ja
    va:286)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:332)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:164)
            at net.minecraft.server.Packet10Flying.a(SourceFile:126)
            at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    13:52:19 [SEVERE] Could not pass event PLAYER_MOVE to Residence
    java.lang.NullPointerException
            at com.bekvon.bukkit.residence.permissions.PermissionManager.getGroupNam
    eByPlayer(PermissionManager.java:102)
            at com.bekvon.bukkit.residence.protection.FlagPermissions.playerHas(Flag
    Permissions.java:181)
            at com.bekvon.bukkit.residence.protection.ResidencePermissions.playerHas
    (ResidencePermissions.java:56)
            at com.bekvon.bukkit.residence.protection.ResidencePermissions.playerHas
    (ResidencePermissions.java:47)
            at com.bekvon.bukkit.residence.listeners.ResidencePlayerListener.onPlaye
    rMove(ResidencePlayerListener.java:302)
            at org.bukkit.plugin.java.JavaPluginLoader$7.execute(JavaPluginLoader.ja
    va:286)
            at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.jav
    a:58)
            at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:332)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:164)
            at net.minecraft.server.Packet10Flying.a(SourceFile:126)
            at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    
     
  12. Offline

    selonianth

    Any idea why my server might be running PermissionsBukkit last and therefore making all the ones that need a permissions plugin give all their commands to everyone instead of just the groups? I need this fixed quickly before I start getting yelled at by my testers because they can't get on.
     
  13. I downloaded and compiled the source myself and worlds still are not updating. my permissions are set like:

    Code:
        heylookoverthere:
            permissions:
            worlds:
                skyrim:
                    magicspells.cast.blink: false
                world:
                    magicspells.cast.blink: true
    And the world I log in on determines if I can cast blink or not.
     
  14. Offline

    Celtic Minstrel

    @Deathlysteve- & @s15c – Wildcards not working was clearly documented in the opening post. If you chose to not bother reading said post, it's your own fault that things aren't working for you. The same applies to prefixes and suffixes, and probably the default group. Try reading the opening post in full, following its instructions, and if things still don't work, then report back here.

    Or you could just stick to Permissions 3.x. There's no reason why you have to change unless rcjrrjcr stops developing it.

    @grandwazir / @Incendia / @SpaceManiac – Assuming zml's code gets pulled, WorldGuard with PermissionsBukkit will eventually look for groups by checking for the permission node 'group.<groupname>'. If you still want to change, giving each group the corresponding permission (and possible removing the permission of the inherited groups) would be a good thing to do, though it won't work until the next release of WorldGuard (at the earliest). I've pinged SpaceManiac as well here because if it's going to become a standard it may be beneficial for him to make PermissionsBukkit automatically give these nodes to each group.

    Once again, though, there is no need to switch to this plugin if you don't want to.

    @Switch0r – You don't need to change at all, and no, your Permissions 3.x plugins will not all work without the bridge.

    @RustyDagger – Pretty much just stick 'superpermbridge.' in front of your * permissions. It'll only work if the permission is checked through the bridge, though, so also make sure that the plugin it belongs to is not using superperms. (For example, General can use superperms, and if it is doing so you would want to leave its wildcard nodes as they are.)

    @Xertez – Yeah, some of the permission descriptions are a bit wonky. <_<

    @CrispyDiamonds – Ask in the Residence thread. Most likely Residence is not compatible with superperms.

    @selonianth – The load order of plugins shouldn't affect who gets what permissions...
     
  15. Offline

    Incendia

    Aye I understand, but I'm already switched to this plugin, I was just looking for something to complete the lacking functionality until such time as things are updated.
     
  16. Offline

    Paradox256

    Nevermind, I just found out it's like, the opposite of case sensitive. I put Paradox256, which is my complete name, and it didn't work. Then I used the addgroup command, and it worked, and in the config it says paradox256, no caps. Why is that?
     
  17. Offline

    selonianth

    It was my fault. I had somehow forgotten to put superperms back too.
     
  18. Offline

    dunst0

    is there someone who can explain me how inheritance work in the new permission system

    this is my permission.yml http://pastebin.com/LjBJriGK
    and this is my config.yml http://pastebin.com/UZ6tw6mV

    why can't the owner use commands that defined in the default group
    did i missunderstood something
     
  19. Offline

    grandwazir

    This is great news. WorldGuard is literately the only plugin stopping me from going across to the new system as it would take us a large amount of time to convert all our regions to another system.

    The thing is I do want to, because of the graceful multiworld implementation, easy configuration, simple way to promote user that actually works and the ability to allocate groups of permission nodes from permissions.yml - all great reasons to switch!
     
  20. Offline

    RustyDagger

    Exactly why i want to swap over to it as well but i dont see how worldguard is stopping you swapping to this. all its permissions would work with the bridge its very little effort if you ask me.

    as far as i am concernd the only real bug with permissionsbukkit is the per world permissions. bug works kinda like this.

    world 1
    some permission: true
    another permission: true
    Some permissions world1 should not have: false

    world 2
    Some permissions world1 should not have: true

    if i was to leave it like that with out the bold entry player could join world 2 and return to world 1 and use the world 2 permission in world 1 simple work around is to add the bold line to fix the issue this should not be needed....
     
  21. Offline

    grandwazir

    @RustyDagger Worldguard expects groups but does not get any so the blacklist stops working along with protection on regions. I posted further up a link to my thread on their forums explaining what is wrong.
     
  22. Offline

    RustyDagger

    oh ouch I see your problem :D i recently moved away from world guard because i installed default commands and had very little use for it but i miss it a lot :( same with commandbook :eek: -1 stacks is what i really miss. and the /stack command.

    thinking i need to jump back and find some multi world management plugin its a pitty commandbook dont do it.
     
  23. Offline

    morizuki

    I still don't get it how to convert all my permissions node from permissions 3.1.6 to superperms using bridge..
     
  24. Offline

    dm_studios

    @morizuki to convert your commands all you have todo is add superpermbridge. before the permission.

    So for example here's a few lines from my setup:
    Code:
                dynmap.reload: true
                dynmap.stats: true
                dynmap.resetstats: true
                superpermbridge.worldguard.region.define.*: true
                superpermbridge.worldguard.region.redefine.*: true
                worldguard.god: true
                worldguard.god.other: true
    
    As you can see above I have added superpermbridge. to some worldguard permission nodes as the nodes are using * and worldguard doesn't yet support SuperPerms.

    EDIT: you should only need to add the "superpermbridge." to permission nodes that use *

    hope this helps :)
     
    morizuki likes this.
  25. Offline

    morizuki

    what if I have permissions from other worlds, and also different suffix/prefix for another world?
     
  26. Offline

    CrispyDiamonds

    okay so every time i log in it says:
    Code:
    11:15:55 [WARNING] [PermissionsBukkit] Node minfo.prefix.Admin for player Crispy
    Diamonds is non-Boolean
    11:15:55 [WARNING] [PermissionsBukkit] Node iConomyChestShop.* for player Crispy
    Diamonds is non-Boolean
    
    please help solve this problem i dont know what it means.
    it has also done it with some other nodes
    here is my config:
    Code:
    groups:
        default:
            permissions:
                essentials.signs.disposal.use: true
                iConomy.bank.*: true
                iConomy.access: true
                iConomy.rank: true
                iConomy.list: true
                iConomy.payment: true
                tombstone.use: true
                tombstone.lwc: true
                tombstone.sign: true
                tombstone.quickloot: true
                minfo.prefix.Guest: true
                permissions.build: false
                 commandbook.who:true
                 commandbook.motd:true
                 commmandbook.rules:true
                 commandbook.time.check:true
                 commandbook.spawn:true
                 commandbook.call:true
                 commandbook.msg:true
                 minfo.prefix.Admin:false
                 minfo.prefix.Builder:false
                 minfo.prefix.Master-Builder:false
                 minfo.prefix.Mod:false
        Builder:
            permissions:
                lwc.protect: true
                wolfpound.use: true
                essentials.warp: true
                essentials.tpa: true
                essentials.tpdeny: true
                essentials.tpaccept: true
                essentials.sethome: true
                essentials.home: true
                essentials.back: true
                essentials.protect: true
                essentials.back.ondeath: true
                essentials.warp.list: true
                 essentials.tpahere:true
                iConomyChestShop.*: true
                personal.warps.use: true
                lockette.user.create.*: true
                SignShop.Signs.*: true
                residence.create: true
                essentials.me: true
                minfo.prefix.Builder: true
                permissions.build: true
                 minfo.prefix.Guest:false
                 minfo.prefix.Master-Builder:false
                 minfo.prefix.Admin:false
                 minfo.prefix.Mod:false
            inheritance:
            - default
        Master-Builder:
            permissions:
                tombstone.*: true
                minfo.prefix.Master-Builder: true
                 minfo.prefix.Builder:false
                 minfo.prefix.Admin:false
                 minfo.prefix.Mod:false
                 minfo.prefix.Guest:false
                 zombe.allowfly:true
                 worldedit.navigation.jumpto:true
                tombstone.freechest: true
                tombstone.freesign: true
            inheritance:
            - Builder
        Moderator:
            permissions:
                worldedit.*: true
                lockette.*: true
                BigBrother.*: true
                minfo.prefix.Mod: true
                 minfo.prefix.Master-Builder:false
                 minfo.prefix.Admin:false
                 minfo.prefix.Builder:false
                 minfo.prefix.Guest:false
                 essentials.tp:true
                 essentials.tphere:true
                 essentials.setwarp:true
            inheritance:
            - Master-Builder
        Admin:
            permissions:
                minfo.prefix.Admin: true
                 minfo.prefix.Mod:false
                 minfo.prefix.Master-Builder:false
                 minfo.prefix.Builder:false
                 minfo.prefix.Guest:false
                 'worldguard.*':true
                 'slots.*':true
                 'tombstone.*':true
                 'vanish.*':true
                 'SignShops.*':true
                 'iConomy.*':true
                 'personal.warps.*':true
                 'lwc.*':true
                 'wolfpound.*':true
                 'antixray.*':true
                 kit.admin:true
                 'permissions.*':true
                 'commandbook.*':true
                 essentials.tpall:true
                 essentials.burn:true
                 essentials.invsee:true
                 essentials.fireball:true
                 essentials.home.others:true
                 essentials.jump:true
                 essentials.top:true
                 essentials.joinfullserver:true
                 'essentials.signs.*':true
            inheritance:
             -Moderator
    messages:
        build: '&cYou do not have permission to build here.'
    
    EDIT: i tried changing my group to a moderator to see what happened and i got even more:
    Code:
    12:03:54 [WARNING] [PermissionsBukkit] Node essentials.warp.list for player Cris
    pyDiamonds is non-Boolean
    12:03:54 [WARNING] [PermissionsBukkit] Node permissions.build for player CrispyD
    iamonds is non-Boolean
    12:03:54 [WARNING] [PermissionsBukkit] Node minfo.prefix.Master-Builder for play
    er CrispyDiamonds is non-Boolean
    12:03:54 [WARNING] [PermissionsBukkit] Node minfo.prefix.Mod for player CrispyDi
    amonds is non-Boolean
    
     
  27. Offline

    ACStache

    you have a lot of spacing issues. some nodes are 1 space too far right, and all those have ":true" or ":false" where it should have a space between it like ": true" or ": fasle"

    try this:
    Code:
    groups:
        default:
            permissions:
                foo.bar: true
                essentials.spawn: true
                essentials.chat: true
                essentials.signs.disposal.use: true
                essentials.signs.disposal.create: true
                iConomy.bank.*: true
                iConomy.access: true
                iConomy.rank: true
                iConomy.list: true
                iConomy.payment: true
                tombstone.use: true
                tombstone.lwc: true
                tombstone.sign: true
                tombstone.quickloot: true
                minfo.prefix.Guest: true
                permissions.build: false
                commandbook.who: true
                commandbook.motd: true
                commmandbook.rules: true
                commandbook.time.check: true
                commandbook.spawn: true
                commandbook.call: true
                commandbook.msg: true
                minfo.prefix.Admin: false
                minfo.prefix.Builder: false
                minfo.prefix.Master-Builder: false
                minfo.prefix.Mod: false
        Builder:
            permissions:
                icoland.admin.notax: true
                worldguard.region.*: true
                worldedit.wand: true
                essentials.help: true
                lwc.protect: true
                icoland.basic.select: true
                icoland.basic.info: true
                icoland.misc.canbuild: true
                wolfpound.use: true
                essentials.warp: true
                essentials.tpa: true
                essentials.tpdeny: true
                essentials.tpaccept: true
                essentials.sethome: true
                essentials.home: true
                essentials.back: true
                essentials.protect: true
                essentials.back.ondeath: true
                essentials.warp.list: true
                essentials.tpahere: true
                iConomyChestShop.*: true
                personal.warps.use: true
                lockette.user.create.*: true
                SignShop.Signs.*: true
                tombstone.freechest: true
                tombstone.freesign: true
                residence.create: true
                essentials.me: true
                minfo.prefix.Builder: true
                permissions.build: true
                essentials.spawn: true
                essentials.chat: true
                essentials.signs.disposal.use: true
                essentials.signs.disposal.create: true
                minfo.prefix.Guest: false
                minfo.prefix.Master-Builder: false
                minfo.prefix.Admin: false
                minfo.prefix.Mod: false
            inheritance:
            - default
        Master-Builder:
            permissions:
                tombstone.large: true
                minfo.prefix.Master-Builder: true
                minfo.prefix.Builder: false
                minfo.prefix.Admin: false
                minfo.prefix.Mod: false
                minfo.prefix.Guest: false
            inheritance:
            - Builder
        Moderator:
            permissions:
                worldedit.*: true
                lockette.*: true
                BigBrother.*: true
                minfo.prefix.Mod: true
                minfo.prefix.Master-Builder: false
                minfo.prefix.Admin: false
                minfo.prefix.Builder: false
                minfo.prefix.Guest: false
                essentials.warp: true
                essentials.tpa: true
                essentials.tpdeny: true
                essentials.tpaccept: true
                essentials.sethome: true
                essentials.home: true
                essentials.back: true
                essentials.protect: true
                essentials.back.ondeath: true
                essentials.warp.list: true
                essentials.tp: true
                essentials.tphere: true
                essentials.tpahere: true
                essentials.setwarp: true
            inheritance:
            - Master-Builder
        Admin:
            permissions:
                minfo.prefix.Admin: true
                minfo.prefix.Mod: false
                minfo.prefix.Master-Builder: false
                minfo.prefix.Builder: false
                minfo.prefix.Guest: false
                'worldguard.*': true
                'slots.*': true
                'tombstone.*': true
                'vanish.*': true
                'SignShops.*': true
                'iConomy.*': true
                'personal.warps.*': true
                'lwc.*': true 
                'wolfpound.*': true
                'antixray.*': true
                kit.admin: true
                'permissions.*': true
                'worldedit.*': true
                'lockette.*': true
                'BigBrother.*': true
                'iConomyChestShop.*': true
                'commandbook.*': true
                essentials.warp: true
                essentials.tpa: true
                essentials.tpdeny: true
                essentials.tpaccept: true
                essentials.sethome: true
                essentials.home: true
                essentials.back: true
                essentials.protect: true
                essentials.back.ondeath: true
                essentials.warp.list: true
                essentials.tp: true
                essentials.tphere: true
                essentials.tpahere: true
                essentials.setwarp: true
                essentials.tpall: true
                essentials.me: true
                essentials.burn: true
                essentials.invsee: true
                essentials.fireball: true
                essentials.home.others: true
                essentials.jump: true
                essentials.top: true
                essentials.joinfullserver: true
                'essentials.signs.*': true
            inheritance:
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  28. Idk what i do wrong :(
    The error:
    Code:
    21:34:40 [WARNING] Server permissions file permissions.yml is not valid YAML: while parsing a block mapping
     in "<reader>", line 7, column 5:
            default:
            ^
    expected <block end>, but found BlockMappingStart
     in "<reader>", line 45, column 9:
                inheritance:
                ^
    My Permissions:
    Code:
    users:
        Illuminate7:
            permissions:
            groups:
            - admin
    groups:
        default:
        description: Starters Permission
        default: true
        permissions:
                permissions.build: false
                essentials.motd: true
                essentials.rules: true
                essentials.list: true
        Builder:
        description: Builders Permission
        default: false
        permissions:
                biomemessage.biome.self: true
                essentials.home: true
                essentials.sethome: true
                essentials.ping: true
                essentials.rules: true
                essentials.msg: true
                essentials.motd: true
                essentials.me: true
                essentials.mail: true
                essentials.mail.send: true
                essentials.list: true
                essentials.getpos: true
                essentials.spawn: true
                essentials.spawnmob: true
                iConomy.access: true
                iConomy.list: true
                iConomy.payment: true
                iConomy.rank: true
                lottery.buy: true
                permissions.build: true
                essentials.signs.create.disposal: false
        Regular:
        description: Advanced Builders Permission
        default: false
        permissions:
                zombe.allowfly: true
            inheritance:
            - Builder
        Mod:
        description: Moderators Permission
        default: false
        permissions:
                essentials.back: true
                essentials.ban: true
                essentials.ban.exempt: true
                essentials.broadcast: true
                essentials.clearinventory: true
                essentials.god: true
                essentials.ignore: true
                essentials.kick: true
                essentials.kick.exempt: true
                essentials.mute: true
                essentials.mute.exempt: true
                essentials.seen: true
                essentials.time: true
                essentials.heal: true
                scavenger.scavenge: true
                essentials.clearinventory.others: false
                essentials.compass: false
                essentials.god.others: false
                essentials.joinfullserver: false
                essentials.nuke: false
            inheritance:
            - Regular
            - Builder
        Op:
        description: Ops Permission
        default: false
        permissions:
                essentials.item: true
                essentials.lightning: true
                essentials.tp: true
                essentials.tpall: true
                essentials.warp: true
                essentials.warp.list: true
                permissions.group.players: true
                permissions.player.addgroup: true
                permissions.player.removegroup: true
            inheritance:
            - Regular
            - Builder
            - Mod
        Admin:
        description: Admins Permission
        default: false
        permissions:
                *: true
    messages:
        build: '&cYou do not have permission to build here.'
     
  29. Offline

    Celtic Minstrel

    If you have multiple permissions, do it something like this:
    Sample groups with worlds configuration (open)
    Code:
    groups:
        default:
            permissions:
                permission.available.in.all.worlds: true
            world:
                creative_world:
                    permission.available.only.in.creative.world: true
                pvp_world:
                    permission.available.only.in.pvp.world: true
    


    For prefixes, you need a separate plugin. Suppose you choose bInfo and have two groups (default and admin) and two worlds (pvp and creative), then you'd set up your bInfo configuration like so:
    Sample bInfo configuration for per-world prefixes (open)
    Code:
    default_pvp:
        prefix: 'your_prefix'
        suffix: 'your_prefix'
        node: server.prefix.default.pvp
    default_creative:
        prefix: 'your_prefix'
        suffix: 'your_prefix'
        node: server.prefix.default.creative
    admin_pvp:
        prefix: 'your_prefix'
        suffix: 'your_prefix'
        node: server.prefix.admin.pvp
    admin_creative:
        prefix: 'your_prefix'
        suffix: 'your_prefix'
        node: server.prefix.admin.creative
    

    Other plugins that provide prefixes may do this a little different, such as mChat or SimplePrefix; bInfo I think would require that you also install bChat to actually have the prefixes appear in chat. Then you'd need to give the permissions as appropriate, like so:
    Sample groups permissions config (open)
    Code:
    groups:
        default:
            permissions:
                # put permissions here
            world:
                pvp_world:
                    server.prefix.default.pvp: true
                creative_world:
                    server.prefix.default.creative: true
        admin:
            permissions:
                # put permissions here
            world:
                pvp_world:
                    server.prefix.default.pvp: false
                    server.prefix.admin.pvp: true
                creative_world:
                    server.prefix.default.creative: false
                    server.prefix.admin.creative: true[/quote]
     
  30. Offline

    Tytonidae

    This is what happens when I start my server:
    Code:
    151 recipes
    16 achievements
    14:36:08 [INFO] Starting minecraft server version Beta 1.7.3
    14:36:08 [INFO] Loading properties
    14:36:08 [INFO] Starting Minecraft server on *:25568
    14:36:08 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    14:36:08 [WARNING] The server will make no attempt to authenticate usernames. Be
    ware.
    14:36:08 [WARNING] While this makes the game possible to play without internet a
    ccess, it also opens up the ability for hackers to connect with any username the
    y choose.
    14:36:08 [WARNING] To change this, set "online-mode" to "true" in the server.set
    tings file.
    14:36:08 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-945-
    g73697a4-b1000jnks (MC: 1.7.3)
    14:36:08 [SEVERE] Could not load 'plugins\PermissionsBukkit-1.1.jar' in folder '
    plugins':
    while parsing a block mapping
     in "<reader>", line 18, column 9:
                permissions:
                ^
    expected <block end>, but found BlockMappingStart
     in "<reader>", line 25, column 10:
                 wo
                 ^
    
            at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(Par
    serImpl.java:576)
            at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
            at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :228)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:12
    2)
            at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
    
            at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseCons
    tructor.java:124)
            at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
            at org.bukkit.util.config.Configuration.load(Configuration.java:82)
            at org.bukkit.plugin.java.JavaPlugin.initialize(JavaPlugin.java:157)
            at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:175)
            at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.
    java:207)
            at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager
    .java:130)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:128)
            at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:97)
            at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigur
    ationManager.java:51)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:132)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    14:36:08 [INFO] [SuperpermBridge] Superperm/Permissions bridge initialized
    14:36:08 [INFO] [MultipleHomes] Initialzing...
    14:36:08 [INFO] Preparing level "hub"
    14:36:08 [INFO] Preparing start region for level 0 (Seed: 473556939534784388)
    14:36:09 [INFO] Preparing start region for level 1 (Seed: 473556939534784388)
    14:36:09 [INFO] AntiCreeper v2.0 - by Rothens
    14:36:09 [INFO] Anticreeper v2.0 - STARTED
    14:36:09 [INFO] Found Diamonds STARTED
    14:36:09 [INFO] [mcMMO] Permissions version 2.7.7 found, using Permissions.
    14:36:09 [INFO] Loading Config File...
    14:36:10 [INFO] [mcMMO] Permissions version 2.7.7 found, using Permissions.
    14:36:51 [INFO] mcMMO version 1.0.49 is enabled!
    14:36:51 [INFO] MoveCraft 0.6.9 Final Beta plugin enabled
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 0
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 1
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 2
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 3
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 4
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 5
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 6
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 9
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 0
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 1
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 0
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Incorrect world name!
    14:36:51 [INFO] Failed to Load Home: 0
    14:36:51 [INFO] Due to:
    14:36:51 [INFO] HomeWorld
    14:36:51 [INFO] Loaded 4 Home(s)
    14:36:51 [INFO] [MultipleHomes] Enabled.
    14:36:51 [INFO] [MultiVerse] Permissions Found
    14:36:51 [INFO] [MultiVerse] - Version 1.7.2 Enabled
    14:36:51 [INFO] [MultiVerse] Loading World & Settings - 'legit' - NORMAL
    14:36:51 [INFO] Preparing start region for level 2 (Seed: -8069512403423675256)
    14:36:51 [INFO] [MultiVerse] Loading World & Settings - 'legit_nether' - NETHER
    14:36:51 [INFO] Preparing start region for level 3 (Seed: -3315324852889863410)
    14:36:52 [INFO] [MultiVerse] Loading World & Settings - 'hub' - NORMAL
    14:36:52 [INFO] [MultiVerse] Loading World & Settings - 'hub_nether' - NETHER
    14:36:52 [INFO] [MultiVerse] Loading World & Settings - 'creative' - NORMAL
    14:36:52 [INFO] Preparing start region for level 4 (Seed: 6923721432197592215)
    14:36:52 [INFO] [MultiVerse] 5 - World(s) loaded.
    14:36:52 [INFO] [MultiVerse] Loading Portals
    14:36:52 [INFO] [MultiVerse] 0 - Portal(s) loaded.
    14:36:52 [INFO] [OddItem] 0.6.5 enabled
    14:36:52 [INFO] [SuperpermBridge] Superperm/Permissions bridge enabled
    14:36:52 [INFO] [MultiVerse] Found Permissions, enabling commands.
    14:36:52 [SEVERE] [OddItem] Couldn't find item.txt or OddItem.yml.
    14:36:52 [INFO] [OddItem] Parsed 203 entries.
    14:36:52 [INFO] [OddGive] 0.8.5 enabled
    14:36:52 [INFO] Server permissions file permissions.yml is empty, ignoring it
    14:36:52 [INFO] Done (4.381s)! For help, type "help" or "?"
    This is my permissions file:
    Code:
    users:
        iKaleb:
            permissions:
                superpermbridge.multiverse.world.create: true
                superpermbridge.multiverse.world.import: true
                superpermbridge.multiverse.world.remove: true
                superpermbridge.multiverse.world.setspawn: true
                superpermbridge.multiverse.portal.create: true
                superpermbridge.multiverse.portal.remove: true
                superpermbridge.multiverse.portal.select: true
                superpermbridge.multiverse.portal.destination: true
                superpermbridge.multiverse.portal.rename: true
                permissions.build: true
            groups:
            - admin
    groups:
        default:
            permissions:
                superpermbridge.permissions.build: true
                superpermbridge.multiverse.world.list: true
                superpermbridge.multiverse.tp: true
                superpermbridge.multiverse.world.spawn: true
                superpermbridge.multiverse.portal.select: true
                superpermbridge.multiverse.portal.list: true
             worlds:
                 creative:
                     odd.give.i: true
                     odd.give.io: false
                     odd.give.give: true
                 legit:
                     odd.give.i: false
                     odd.give.io: false
                     odd.give.give: false
        admin:
            permissions:
                permissions.*: true
                multiverse.*: true
            inheritance:
            - default
        user:
            permissions:
                permissions.build: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    As you may be able to tell, this was built off the default file. I have no need for the user group, and was planning on deleting it. I kept it however as a note on how to make permissions only affect one world.

    I was attempting to make it so users in the default group can use /i in creative, but not in legit. These were the only permissions I added, and then I got that error and permissions no longer has any effect whatsoever. I am iKaleb, which is why there are extra permissions applied to me.

    What am I doing wrong?
     
  31. Offline

    ACStache

    looks like 'worlds:' for the odd.give stuff is 1 space too far to the right. pull it back one and see if that works.

    EDIT: I just noticed it also includes the 8 lines below it that are also 1 space too far to the right. so lines 25-33 need to be moved over one
     

Share This Page