[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

    Bios Element

    They do, it's the default group.
     
  3. Offline

    marvinej

    hey Bios any chance i could get you to help me out?


    heres my config file. i dont get why half of my stuff isn't working.
    ive been fiddling with this thing for hours. also when i create a new user it does not auto add it to the list.
    perhaps you can point me in the right direction.
    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.
    
    groups:
      Default:
        permissions:
          'geocache.*': true
          iConomy.access: true
          iConomy.rank: true
          iConomy.list: true
          iConomy.payment: true
          admincmd.time.day: true
          stargate.use: true
          admincmd.player.list: true
          admincmd.player.msg: true
          'iConomy.bank.*': true
          iConomyChestShop.shop.buy: true
          iConomyChestShop.shop.sell: true
          iConomy.command.iteminfo: true
          kit.kit: true
          kit.sign: true
          kit.starterkit: true
          ichat.color: true
          DailyBonus.get: true
          iConomyChestShop.shop.create: true
          iConomyChestShop.shop.exclude.49: true
          iConomyChestShop.shop.exclude.89: true
          iConomyCChestShop.shop.exclude.348: true
          iConomyChestShop.shop.exclude.7: true
          iConomyChesthop.shop.exclude.87: true
          homesweethome.home: true
          homesweethome.home.set: true
          lottery.buy: true
          wormhole.simple.use: true
          wormhole.use.sign: true
          wormhole.use.dialer: true
          wormhole.network.use.worlds: true
          wormhole.network.use.public: true
          wormhole.network.use.mines: true
          simplespleef.list: true
          simplespleef.play: true
          simplespleef.team: true
          simplespleef.leave: true
          'QuantumConnectors.create.*': true
          lagmeter.command.lag: true
          'mobarena.use.*': true
          'mobarena.classes.*': true
          'mobarena.arenas.*': true
          simplechestlock.lock: true
          mchat.prefix.c7: true
          permissions.build: true
          towny.wild.build: true
          motd.who.use: true
          towny.wild.destroy: true
          towny.wild.switch: true
          towny.wild.item_use: true
      User:
        permissions:
          iConomy.access: true
          iConomy.rank: true
          iConomy.list: true
          iConomy.payment: true
          admincmd.time.day: true
          stargate.use: true
          admincmd.player.list: true
          admincmd.player.msg: true
          'iConomy.bank.*': true
          iConomyChestShop.shop.buy: true
          iConomyChestShop.shop.sell: true
          iConomy.command.iteminfo: true
          kit.kit: true
          kit.sign: true
          kit.starterkit: true
          ichat.color: true
          DailyBonus.get: true
          iConomyChestShop.shop.create: true
          iConomyChestShop.shop.exclude.49: true
          iConomyChestShop.shop.exclude.89: true
          iConomyCChestShop.shop.exclude.348: true
          iConomyChestShop.shop.exclude.7: true
          iConomyChesthop.shop.exclude.87: true
          homesweethome.home: true
          homesweethome.home.set: true
          lottery.buy: true
          wormhole.use.sign: true
          wormhole.use.dialer: true
          'signlift.*': true
          towny.town.claim: true
          mchat.prefix.c7: true
          permissions.build: true
        inheritance:
        - Default
      Vip:
        permissions:
          admincmd.weather.clear: true
          'simpleshop.*': true
          simpleshop.shop.sell: true
          DailyBonus.getVIP: true
          simplespleef.start: true
          towny.town.new: true
          mchat.prefix.c2: true
          permissions.build: true
        inheritance:
        - User
      Donate:
        permissions:
          kit.kit: true
          kit.armor: true
          kit.shovel: true
          kit.pick: true
          kit.sword: true
          kit.axe: true
          mchat.prefix.cd: true
          permissions.build: true
        inheritance:
        - Vip
      Mod:
        permissions:
          admincmd.time.set: true
          'admincmd.tp.*': true
          admincmd.player.loc: true
          'magiccarpet.*': true
          'kit.*': true
          'admincmd.weather.*': true
          ww.warp: true
          ww.list: true
          simplewarp.list: true
          simplewarp.warp: true
          regios.exception: true
          regios.bypass: true
          simplespleef.stop: true
          simplespleef.delete: true
          simplespleef.reload: true
          simplespleef.prize: true
          'WirelessRedstone.*': true
          towny.nation.new: true
          simplechestlock.lock: true
          mobarena.admin.enable: true
          'simplechestlock.command.*': true
          mchat.prefix.c9: true
          permissions.build: true
          motd.ip.use: true
        inheritance:
        - Donate
      Admin:
        permissions:
          '*': true
          mchat.prefix.c4: true
          permissions.build: true
    users:
      fluffybunny:
        permissions:
        group:
        - default
      burnigloo:
        permissions:
        groups:
        - Admin
      blademan4321:
        permissions:
        group:
        - vip
      sirkratosaurion:
        permissions:
        group:
        - Admin
      admin:
      kratos:
      Xerxes:
      DarkusHunter:
      test:
      MrTiny:
      Tezzsyhr:
      BubbleyyB:
      Orange:
        permissions:
        groups:
        - Admin
      Loki:
      Ktulu666:
      DivisionOne:
      Alphamckles:
      Alphameckles:
      vampirevixen:
      hg1:
      RobertBrown:
      drakkendor:
      steve:
      aioverride:
      Blackstarr:
        permissions:
        group:
        - Mod
      SteelGzus:
      C_Gunner3:
      finlay:
      supernannymcturd:
      kimbo:
      MisaMisa:
      syrensilly:
      Doomed_ghost:
      Eternity:
      uberninja:
      kalmageddon666:
      MtTiny:
      Berz741:
      kian:
      AROCK1:
      poily2:
      H4rdCOrE:
      ArcosMagna:
        permissions:
        groups:
        - Mod
      Davenport:
      ConorPF:
      TheMightyOrange:
      Zoike:
      LiquidDemon:
      Odinsonnah:
      Lucifersbest:
      BuckFuddie:
      roguet2srs:
      s8arock:
      MactoPerFuror:
      Player:
      Beehe:
      Mezzy:
      The_Vamps:
      dragonlord:
      darkroom0716:
      Amyyy:
      testing:
      test2:
      compulsive_liar:
      'Arcos Magna':
      S8VALENTINE:
      LordZatrann:
      SpinelessChicken:
      Bug_catcher:
      Notch:
      ojdadroman:
      shalalilia:
      'Z3r0 S1gnal':
      Z3r0_S1gnal:
      leojizz:
      tmo:
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  4. Offline

    krinsdeath

    For permissions with a wildcard (*), use the prefix "superpermbridge."

    Code:
    groups:
      users:
        permissions:
          superpermbridge.iConomy.bank.*: true
          superpermbridge.simpleshop.*: true
    
    etc. This is only necessary for wildcard permissions, not full path permissions. Don't use single or double quotes for the key names, either. That just confuses the YAML parser.

    Lastly, there is no "superpermbridge.*" node, so you have to find all of your admin nodes and add them as "superpermbridge.[pluginname].*: true", like "superpermbridge.worldedit.*: true"

    good luck.

    @SH4D0WS1N - Your problem is that there is no "superpermbridge.*"
    As far as making ops not colored, I'm not sure what you mean. This is probably an mChat problem/config issue.

    For full path names (like 'essentials.afk'), there's no need for the superpermbridge prefix. You only need it for nodes that include wildcards.

    Lastly, does mchat work if you put the config inside the PermissionsBukkit config.yml? That might be why you're having issues.
     
  5. Offline

    AcelinH98

    Its there away To set DEFAULT Groups, So like when somone joins their auto in the group i picked to set default????

    PLEASE Reply i really need help with this, Overall this is an amazing plugin :)
     
  6. Offline

    marvinej

    thanks but this still does not explain the lack of automatically adding new users to the list.
     
  7. Offline

    AcelinH98

    Its there away To set DEFAULT Groups, So like when somone joins their auto in the group i picked to set default????

    PLEASE Reply i really need help with this, Overall this is an amazing plugin
     
  8. Offline

    krinsdeath

    @marvinej - In order to prevent clutter in the config.yml, members of the "default" group are never written to it (since it's reasonable to assume they won't ever have special permissions). In order to write them to the file, promote them with /perm player setgroup [playername] [group1,...] or /perm player addgroup [playername] [group].

    @AcelinH98 - The default group is called "default" and is included with the plugin. Don't change the name, leave it as "default" (all lowercase). Your users will stay in that group until you promote them out of it.
     
  9. Offline

    Dark_Balor

    You have renamed the group default to Default. Try with the lowercase one :)
    Because here we don't have any option" default: true" like permission, you can't rename the default group.
     
  10. Offline

    Kiwii

    I think almost nobody even cares about reading the comments in the auto created config file. For those who deleted it, here it is:
    answer to all those stupid questions (open)
    # 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.

    In line 12 to 14 it says:
    @SpaceManiac
    Now, I think, I really have a reasonable question that gets lost inside of this stream of dumbness. My console gets spammed with severe errors whenever somebody got kicked for floating to long. Looks like that:
    console output (open)
    14:03:19 [WARNING] Xetr0n was kicked for floating too long!
    14:03:19 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
    at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:134)
    at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:104)
    at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
    at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
    at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:251)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
    at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:146)
    at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:117)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:354)
    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)

    As I think this is a reproducible problem this case should been taken into consideration and it should not throw an exception.
    Craftbukkit b1000 and PermissionsBukkit v1.1

    I hope this post did not get to rude...

    in case needed: My PermissionsBukkit config.yml (open)
    users:
    KateCraft:
    permissions:
    permissions.example: true
    groups:
    - Admin
    tigerrrrawr:
    permissions:
    stop.spam: true
    groups:
    - Admin
    snowface:
    permissions:
    stop.spam: true
    groups:
    - Admin
    brackelman:
    groups:
    - Operator
    Masket2:
    groups:
    - Member
    mclucas97:
    groups:
    - Member
    Devil2012:
    groups:
    - Member
    sesamstange:
    groups:
    - Member
    LennoxKoibito:
    groups:
    - Member
    maddin96:
    groups:
    - Member
    siheot:
    groups:
    - Member
    ongobongo1:
    groups:
    - Member
    picknick24:
    groups:
    - Member
    McSaf:
    groups:
    - Member
    Extreme4592:
    groups:
    - Member
    LET0:
    groups:
    - Member
    Khaley91:
    groups:
    - Member
    ibes3:
    groups:
    - Member
    thadevil96:
    groups:
    - Member
    19Jan96:
    groups:
    - Member
    atomus2:
    groups:
    - Member
    Magicmaxx:
    groups:
    - Member
    StrikerGT:
    groups:
    - Member
    ongobongo:
    groups:
    - Member
    tritron2012:
    groups:
    - Member
    Xetr0n:
    groups:
    - Operator
    ki11ahkiwi:
    permissions:
    stop.spam: false
    groups:
    - Admin
    groups:
    default:
    permissions:
    permissions.build: false
    mchat.prefix.Gast: true
    kate.basics: false
    commandhelper.alias.guestonly: true
    Member:
    permissions:
    permissions.build: true
    mchat.prefix.Member: true
    kate.basics: true
    Moderator:
    permissions:
    permissions.build: true
    mchat.prefix.Moderator: true
    kate.moderation: true
    Operator:
    permissions:
    permissions.build: true
    mchat.prefix.Operator: true
    kate.operation: true
    Admin:
    permissions:
    permissions.*: true
    mchat.prefix.Admin: true
    kate.administration: true
    ChuckNorris:
    permissions:
    darf.alles: true
    messages:
    build: <&4Kate&f> Sorry, you are not allowed to build.
     
  11. Offline

    Megalanias

    Can someone help me ?
    Code:
    users:
     megalanias
        ConspiracyWizard
            permissions
            permissions.*  true
                permissions.example  true
            groups
            - owner
     tobiterium
        ConspiracyWizard ':'
            permissions
            permissions.* true
                permissions.example true
            groups
            - admin
     devilchrissi
        ConspiracyWizard
            permissions
            permissions.* true
                permissions.example true
            groups
            - admin
     Sl1ck1337
        ConspiracyWizard
            permissions
            - '*'
            permissions.* true
                permissions.example true
            groups
            - admin
     kleinerscheisser
        ConspiracyWizard
            permissions
            - '*'
            permissions.* true
                permissions.example true
            groups
            - admin
     groups
        default
            permissions
                permissions.build false
        admin
            permissions
                permissions.* true
                banhammer.*true
                iconomy.*true
                worldedit.*true
                god.*:true
                niftywarp.*:true
            inheritance
            - user
        user
            permissions
                permissions.build true
            worlds
              creative
                    coolplugin.item true
            inheritance
            - default

    what is the failure ?
     
  12. Offline

    Celtic Minstrel

    Um, no it doesn't. Quoting keys is perfectly valid and sometimes necessary.

    What? I was quite certain I remember him saying there was one...
     
  13. Offline

    Zocomen

    Hey, Ive got a strange error code this evening. It cused my server to restart
    when someone who was'nt on the whitelist joined the game.
    Code:
    2011-07-29 04:49:03 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
        at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:134)
        at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:104)
        at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
        at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
        at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:251)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:146)
        at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:117)
        at org.bukkit.craftbukkit.entity.CraftPlayer.kickPlayer(CraftPlayer.java:135)
        at com.mcmyadmin.bukkitcompat.ConsoleCommandHandler.onCommand(ConsoleCommandHandler.java:108)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:312)
        at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:480)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:465)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    I am using bukkit#1000 Build. And maybe to announce Im using McMyAdmin too. That's where I set the
    permission and classes.
    Please Help Me :)
     
  14. Offline

    arthoz

    I know its a bit spammy, but still wondering about inheritance and (dis)allowing users to add groups "above" their group, Rustydagger also wonders the same:

     
  15. Offline

    Paah

    @SpaceManiac
    The BukkitContrib clash was fixed ages ago on player disconnect, but it still appears when players get kicked (and even crashes the server while at it (the permissiblebase thingy))
     
  16. Offline

    Megalanias

    hello ? need help !
     
  17. Offline

    TheMap

    Forget it

    Please someone tell me what im doing wrong here, I have never had this many issues with permissions in my lifetime.
    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
            commandbook.rules: true
            commandbook.msg: true
            lwc.protect: 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
    
    Code:
    users:
        TheMapp:
            permissions:
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: true
        admin:
            permissions:
                permissions.*: true
                server.basics: true
                server.admin: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    

    As an admin I join the server and cant do anything, I type list and it says I don't have the permission.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 17, 2016
  18. Offline

    jasonsj10

    Umm please help when i do my Permissions.yml. This is what i put in it
    Code:
    users:
        Jasonsj10:
            permissions:
            groups:
            - admin
    groups:
        default:
            permissions:
                permissions.build: false
                commandbook.spawn: true
            worlds:
                world:
        admin:
            permissions:
                permissions.*: true
            worlds:
                world:
            inheritance:
            - default
    
    I start the server. This is the Error i get.
    Code:
    23:19:36 [SEVERE] Permission node 'groups' in server config is invalid
    java.lang.IllegalArgumentException: 'default' key contained unknown value
            at org.bukkit.permissions.Permission.loadPermission(Permission.java:121)
    
            at org.bukkit.craftbukkit.CraftServer.loadCustomPermissions(CraftServer.
    java:418)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:152
    )
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    23:19:36 [INFO] Done (2.593s)! For help, type "help" or "?"
     
  19. Offline

    SH4D0WS1N

    Alright, I have only two problems now.
    Factions plugin inserts the name incorrectly for the default player only
    I can't figure out the world edit wildcard node, I believe I've tried all four combinations I know of superperms and non superperms, * and non-*, etc
    Configs:

    Code:
    # mChat configuration file
    #
    #           **IMPORTANT**
    #   usage of mchat-message-format is restricted to:
    #       +suffix,+s, +prefix,+p, +group,+g, +world,+w, +time,+t, +name,+n, +dname,+dn, +health,+h +healthbar,+hb, +message,+msg,+m
    #
    #   usage of mchat-name-format is restricted to:
    #       +suffix,+s, +prefix,+p, +group,+g, +world,+w, +time,+t, +name,+n, +dname,+dn, +health,+h +healthbar,+hb
    #           **************
    #
    # Use of mchat: is only if your using PermissionsBukkit (superperms)
    # ignore it if you don't know what that is.
    
    mchat-join-message: 'has joined the game.'
    mchat-leave-message: 'has left the game.'
    mchat-kick-message: 'has been kicked from the game.'
    mchat-colouring: 'dark_blue'
    mchat-contrib-enabled: 'true'
    mchat-notifyHealth-enabled: 'false'
    mchat-contrib-PMBox: 'false'
    mchat-typingMessage: '*Typing*'
    mchat-name-format: '+prefix+suffix+name&e'
    mchat-date-format: HH:mm:ss
    mchat-message-format: '+prefix+suffix+name&f: +message'
    mchat:
        prefix:
            owner: '&4[Owner]&f'
            headadmin: '&2[Head Admin]&f'
            clay: '&d[Gay]&f'
            admin: '&1[Admin]&f'
            vip: '&b[VIP]&f'
            moderator: '&5[Moderator]&f'
            default: '&f'
    Code:
    users:
        SH4D0WS1N:
            permissions:
            groups:
            - shadow
        CyborgNUDL:
            permissions:
            groups:
            - owner
        bigfootsmyth:
            permissions:
            groups:
            - headadmin
        KalebBrown1231:
            permissions:
            groups:
            - headadmin
        Kory:
            permissions:
            groups:
            - admin
        asillysquirrel:
            permissions:
            groups:
            - admin
        clabaj96:
            permissions:
            groups:
            - clay
    groups:
        shadow:
            permissions:
                mchat.prefix.owner: false
                mchat.prefix.default: true
            inheritance:
            - owner
        owner:
            permissions:
                mchat.prefix.headadmin: false
                mchat.prefix.owner: true
                mchat.reload: true
                permissions.*: true
                superpermbridge.*: true
            inheritance:
            - headadmin
        headadmin:
            permissions:
                mchat.prefix.admin: false
                mchat.prefix.headadmin: true
                superpermbridge.essentials: true
                essentials.tptoggle: false
                essentials.nick.others: false
                essentials.ban.exempt: true
                essentials.tempban.exempt: true
                essentials.kick.exempt: true
                essentials.mute.exempt: true
                essentials.nuke: false
                essentials.thunder: false
                superpermbridge.factions.*: true
                superpermbridge.iConomy.*: true
                superpermbridge.iConomyChestShop.*: true
                essentials.god: true
            inheritance:
            - admin
        clay:
            permissions:
                mchat.prefix.admin: false
                mchat.prefix.clay: true
            inheritance:
            - admin
        admin:
            permissions:
                mchat.prefix.moderator: false
                mchat.prefix.admin: true
                superpermbridge.creativegates: true
                essentials.item: true
                essentials.clearinventory: true
                essentials.tempban: true
            inheritance:
            - moderator
        vip:
            permissions:
                mchat.prefix.moderator: false
                mchat.prefix.vip: true
                essentials.jump: true
                essentials.top: true
                essentials.tphere: true
                essentials.joinfullserver: true
                factions.manageSafeZone: true
                superpermbridge.worldedit: true
            inheritance:
            - default
        moderator:
            permissions:
                mchat.prefix.default: false
                mchat.prefix.moderator: true
                essentials.time: true
                essentials.weather: true
                essentials.tp: true
                essentials.back: true
                essentials.back.ondeath: true
            inheritance:
            - default
        default:
            permissions:
                permissions.build: true
                mchat.prefix.default: true
                superpermbridge.creativegates: false
                essentials.afk: true
                essentials.compass: true
                essentials.depth: true
                essentials.getpos: true
                essentials.help: true
                essentials.ignore: true
                essentials.list: true
                essentials.me: true
                essentials.motd: true
                essentials.msg: true
                essentials.rules: true
                essentials.ban.notify: true
                essentials.kick.notify: true
                essentials.home: true
                essentials.warp: true
                essentials.warp.list: true
                essentials.portal: true
                essentials.participate: true
                factions.create: true
                factions.manageWarZone: true
                iConomy.access: true
                iConomy.rank: true
                iConomy.list: true
                iConomyChestShop.shop.create: true
                iConomyChestShop.shop.buy: true
                iConomyChestShop.shop.sell: true
                iConomyChestShop.shop.exclude.46: true
                essentials.god: false
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  20. Offline

    jmcneely

    If this has been asked before, please redirect me.

    Is there a way to change the default group name? I've been playing around with the new permissions and I've noticed that when I changed the name of the group "default" to "visitor" a new player won't be a visitor but instead wont be in any group at all.
     
  21. Offline

    IncendiaDrakon

    Looks like I found a bug with inheritance. If not, then there's something wrong with my config. I haven't thoroughly tested it, since I don't have anyone online at the moment to try typing every last possible command... Anyway, looks like my "vip" group won't inherit all "default" permissions. I think it could have something to do with "moderator" also inheriting from "default", but I don't think that's how it is supposed to work. I'm using CB1000 with both permissionsbukkit1.1 and superpermsbridge1.2, I think. Here's my config.yml:
    Code:
    users:
        IncendiaDrakon:
            permissions:
            groups:
            - admin
        AnnyChan:
            permissions:
            groups:
            - admin
        Hiryu:
            permissions:
            groups:
            - moderator
        CaptainRiz:
            permissions:
            groups:
            - moderator
        Calek:
            permissions:
            worlds:
                flatlands:
                    superpermbridge.commandbook.give: true
            groups:
            - default
        SirZeliek:
            permissions:
                mchat.suffix.sirzeliek: true
            groups:
            - vip
    groups:
        default:
            permissions:
                mchat.group.default: true
                mchat.pm: true
                mchat.me: true
                permissions.build: true
                superpermbridge.commandbook.spawn: true
                superpermbridge.commandbook.rules: true
                superpermbridge.commandbook.motd: true
                superpermbridge.commandbook.who: true
                superpermbridge.commandbook.whereami: true
                superpermbridge.commandbook.whereami.compass: true
                superpermbridge.commandbook.midi: true
                superpermbridge.commandbook.clear: true
                superpermbridge.commandbook.say.me: true
                superpermbridge.commandbook.msg: true
                superpermbridge.commandbook.kit.starter: true
                superpermbridge.commandbook.kit: true
                superpermbridge.mcmmo.regeneration: true
                superpermbridge.mcmmo.skills.*: true
                superpermbridge.mcmmo.ability.*: true
                superpermbridge.mcmmo.commands.*: true
                superpermbridge.mcmmo.chat.partychat: true
                superpermbridge.multiverse.tp: true
                superpermbridge.multiverse.list: true
                superpermbridge.lwc.protect: true
                superpermbridge.showcase.finite: true
                superpermbridge.showcase.basic: true
                superpermbridge.showcase.buy.finite: true
                superpermbridge.cabinet.*: true
                superpermbridge.lightlevel.use: true
                superpermbridge.lavafurnace.player.build: true
                superpermbridge.lavafurnace.player.fuel: true
                superpermbridge.lavafurnace.player.destroy: true
                superpermbridge.lavafurnace.player.use: true
                superpermbridge.lavafurnace.chests: true
                superpermbridge.wolfpound.use: true
                superpermbridge.iConomy.access: true
                superpermbridge.iConomy.list: true
                superpermbridge.iConomy.payment: true
                superpermbridge.iConomy.rank: true
                superpermbridge.iConomyChestShop.shop.sell: true
                superpermbridge.SheepFeed.feed: true
                superpermbridge.mobbounty.collect: true
                superpermbridge.bookworm.create: true
                superpermbridge.bookworm.write.own: true
                superpermbridge.bookworm.copy.own: true
                superpermbridge.bookworm.copy.others: true
                superpermbridge.bookworm.remove.own: true
                superpermbridge.bookworm.destroy.own: true
                superpermbridge.deathcontrol.use: true
                superpermbridge.ac.workbench: true
                superpermbridge.ac.chest: true
            worlds:
                world:
                    superpermbridge.tpp.tp.*: true
                    superpermbridge.myhome.home.*: true
                    superpermbridge.mywarp.warp.*: true
                world_nether:
                    superpermbridge.tpp.tp.*: true
                    superpermbridge.myhome.home.*: true
                    superpermbridge.mywarp.warp.*: true
                survival:
                    superpermbridge.mcmmo.commands.myspawn: true
                    superpermbridge.mcmmo.commands.setmyspawn: true
                    superpermbridge.mcmmo.item.chimaerawing: true
                survival_nether:
                    superpermbridge.mcmmo.commands.myspawn: true
                    superpermbridge.mcmmo.commands.setmyspawn: true
                    superpermbridge.mcmmo.item.chimaerawing: true
                flatlands:
                    superpermbridge.tpp.tp.*: true
                    superpermbridge.myhome.home.*: true
                    superpermbridge.mywarp.warp.*: true
                world2:
                    permissions.build: true
                    superpermbridge.tpp.tp.*: true
                    superpermbridge.myhome.home.*: true
                    superpermbridge.mywarp.warp.*: true
                test:
                    permissions.build: false
                world05:
                    permissions.build: false
        vip:
            permissions:
                mchat.group.vip: true
            inheritance:
            - default
        moderator:
            permissions:
                permissions.build: true
                mchat.group.moderator: true
                mchat.group.default: false
                superpermbridge.commandbook.*: true
                superpermbridge.tpp.mod.*: true
                superpermbridge.lwc.mod: true
                superpermbridge.myhome.*: true
                superpermbridge.mywarp.*: true
                superpermbridge.spawnmob.*: true
                superpermbridge.godPowers.*: true
                superpermbridge.mcmmo.chat.adminchat: true
            worlds:
                world:
                world_nether:
                survival:
                survival_nether:
                flatlands:
                world2:
                test:
                    permissions.build: false
                world05:
                    permissions.build: false
            inheritance:
            - default
        admin:
            permissions:
                permissions.*: true
                permissions.build: true
                superpermbridge.*: true
                mchat.reload: true
                mchat.group.admin: true
                mchat.pm: true
                mchat.me: true
                bb.*: true
            worlds:
                world:
                world_nether:
                survival:
                survival_nether:
                flatlands:
                world2:
                test:
            inheritance:
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  22. Offline

    Deathlysteve-

    this new change for permissions sucks big time... too confusing urgh!!!
    McMyAdmin also hates this permissions, even though its update allowed this permissions to do much more than old...
    if someone has McMyAdmin and somehow got it to work, pls tell me because im reallly pissed attm >:mad:
    :(
     
  23. Offline

    marvinej

    ok so ive finally got it mostly working. having a few problems.
    iConemy chest shops:
    i put the nodes in corectly into the config under Default and everyone can use them except for default users. same thing with wormholes extreme
     
  24. Offline

    PhonicUK

    McMyAdmin supports PermissionsBukkit extremely well, perhaps you'd care to detail exactly what problems you're having that are causing you frustration?
     
  25. Offline

    razoreqx

    Ive had zero issues with McMyAdmin and PermissionsBukki.. One thing I will suggest is to make sure you are adding your new nodes in the web interface (avoid manually editing the file). Phonic provides you with a direct interface to add to the permissions file....
     
  26. Offline

    Celtic Minstrel

    @jasonsj10 – All that stuff doesn't go in the permissions.yml file; it's supposed to go in the config.yml file in the PermissionsBukkit folder. You can probably just move permissions.yml there and rename it (the server will regenerate a blank one on startup).

    @jmcneely – There isn't a way to change the default group name, but the group name is not actually used for anything; you can for example set the prefix to something completely different if you're using a prefix plugin.
     
  27. Offline

    panade

    i got the same problem like jmcneely and i use mcmyadmin since my old bukkit server got completely punched down by buggs due 1000 patch. i try to start over and the problem is people doesnt get any group while joining. for some reason they are linked to the mcmyadmin made group names. they got permissions to build from the group Everyone but any further permissions set in it wont work. but if i manualy add myself to that group it works. so its only parttime assign ppl to this group. and the mchat prefixed are slot not taken to the people playing there. only if i manualy add them to the group
     
  28. Offline

    BigMoomba

    I have a little Problem with it XD
    Here my Config ->
    Code:
    users:
        BigMoomba:
            groups:
            - admin
        Crecky:
            groups:
            - user
        TerraX85:
            groups:
            - user
        Dethkar:
            groups:
            - user
        KillerMiller1992:
            groups:
            - user
        Argrims:
            groups:
            - user
    groups:
        default:
            permissions:
                permissions.build: false
        admin:
            permissions:
                *: true
                permissions.*: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
                mcmmo.skills.*: true
                mcmmo.regeneration: true
                mcmmo.ability.herbalism: true
                mcmmo.ability.woodcutting: true
                mcmmo.ability.mining: true
                mcmmo.ability.axes: true
                mcmmo.ability.excavation: true
                mcmmo.ability.swords: true
                mcmmo.ability.unarmed: true
                mcmmo.commands.setmyspawn: true
                featurepack.time.vote: true
                featurepack.wand.vote: true
                lc.level.*: true
                featurepack.vote: true
                featurepack.time: true
                iConomy.access: true
                iConomy.payment: true
                ChestShop.shop.create: true
                ChestShop.shop.buy: true
                ChestShop.shop.sell: true
                ChestShop.command.iteminfo: true
                lwc.protect: true
                featurepack.weather: true
                Magic.wand.use: true
                Magic.commands.spells: true
                Magic.cast.heal: true
                Magic.cast.pull: true
                citizens.toggle.help: true
                citizens.toggle.blacksmith: true
                citizens.toggle.healer: true
                citizens.toggle.trader: true
                citizens.toggle.wizard: true
                citizens.basic.create: true
                citizens.basic.use.help: true
                citizens.basic.use.info: true
                citizens.basic.use.select: true
                citizens.basic.use.list: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.resettext: true
                citizens.basic.modify.item: true
                citizens.basic.modify.armor: true
                citizens.basic.modify.lookat: true
                citizens.basic.modify.talkclose: true
                citizens.basic.modify.setowner: true
                citizens.blacksmith.use.help: true
                citizens.blacksmith.use.status: true
                citizens.blacksmith.use.repair: true
                citizens.healer.use.help: true
                citizens.healer.use.status: true
                citizens.healer.use.heal: true
                citizens.healer.modify.levelup: true
                citizens.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.trader.use.list: true
                citizens.trader.use.trade: true
                citizens.trader.modify.money: true
                citizens.trader.modify.stock: true
                citizens.trader.modify.clearstock: true
                citizens.wizard.use.status: true
                citizens.wizard.use.help: true
                citizens.wizawizard.use.interact: true
                citizenrd.use.locations: true
                citizens.s.wizard.modify.mode: true
                citizens.wizard.modify.addloc: true
                citizens.wizard.modify.removeloc: true
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    
    And me as Admin dont have all premissions xD
    from lc.level.* the Skills not working (all users)
    the test plugin SuperNatural Players plugin but i have as Admin no premission to us any command xD
    so what most i change?
     
  29. Offline

    staxx6

    Yeah, plz fix it.
    This happen after the death>title menu>relogg, too.
    And after a certain conditions that I cant remember. (caused by a other player)
     
  30. Offline

    Zocomen

    I think the problem is you have :true at the permissions.*
    Only use permissions.* and it will work.

    This is the best plugin for McMyAdmin. Use the recommended setting what choosing permission export. Which means permissionsbukkit + mChat. This work's great for me. Only edit the groups and stuff in the McMyAdmin tab.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 17, 2016
  31. Offline

    DamenPulse

    Hey SpaceManiac. I have been running into the problem that after transitioning from Permissions 3 whenever I log in I am the default not the Owner group like I was before. I am unable to build or access my stargates, and none of the commands work. I have uploaded the permissions.yml and config.yml for you to take a look at. They are in the zip archive. The only parent permission I have setup so far is the server.owner which contains all permission nodes set to true. I am then set as an owner in the server config file, however, when I log in I'm always default. :mad:
     

    Attached Files:

Share This Page