[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

    Deathlysteve-

    argh FRUSTRATION!
    Why wont the dang thing let me have groups to have certain colours like Admins have Purple... Members Green... so on...
    ive tried mChat... didnt work
    I tried SimplePrefix... doesnt work...
    CAN SOMEONE PLEASE GIVE ME A STEP TO STEP TUTORIAL ON WHAT YOU ARE SUPPOSED TO DO WHEN MAKING SOME-ONES NAME A CERTAIN COLOUR DEPENDING ON THEIR GROUP!
    Much appreciated!
    tried too long on this -.-
     
  3. Offline

    Celtic Minstrel

    Install WorldEdit 4.7 from here. WorldEdit 4.6 doesn't support superperms.

    @Deathlysteve- – If you're using SimplePrefix or mChat, you set the prefixes in their config (if colours are all you want, then the prefix is just the colour code) and then apply the proper permissions in your permissions file. You also have to unapply any inherited permissions though. For example, supposing you have groups Builder and Admin (and default of course) and the permissions are simpleprefix.Builder and simpleprefix.Admin. Then you'd do something like this:
    Code:
      Builder:
        permissions:
          simpleprefix.Builder: true
          simpleprefix.default: false # NOTE THIS LINE
        inheritance: [default]
      Admin:
        permissions:
          simpleprefix.Admin: true
          simpleprefix.Builder: false # You need to explicitly remove inherited prefixes.
        inheritance: [Builder]
     
  4. Offline

    PureTryOut

    I'm trying to make permissions per world but is not working.
    Code:
    groups:
        Builder:
            permissions:
                permissions.build: true
            worlds:
                 PPABuild:
                        multiverse.core.list.worlds: true
                        multiverse.core.info: true
                        multiverse.core.list.who: true
                        multiverse.core.spawn.self: true
                        multiverse.core.confirm: true
                        multiverse.sleep: true
                        mchat.prefix.TeamYellow: true
                        mchat.suffix.TeamYellow: true
                        mchat.prefix.: false
                        mchat.suffix.: false
                        commandbook.give: true
                        commandbook.give.stack: true
                        commandbook.give.infinite: true
                        commandbook.who: true
                        commandbook.motd: true
                        commandbook.rules: true
                        commandbook.time.check: true
                        commandbook.spawn: true
                        commandbook.teleport: true
                        commandbook.return: true
                        commandbook.say.me: true
                        commandbook.say: true
                        commandbook.msg: true
                        commandbook.clear: true
                        commandbook.whereami.compass: true
                        commandbook.whereami: true
                        commandbook.whois: true
    So for example a builder tries the /item command in the PPABuild world but the server says he has no permission.
    The permission is right so what am I doing wrong?
     
  5. Offline

    Darcion

    here my info.yml from mchat works great, i posted before my hole permissions, so look into it if you want to understand it.

    Code:
    groupnames:
        Default: ''
        Spieler: ''
        VIP: ''
        Support: ''
        Moderator: ''
        CoAdmin: ''
        Admin: ''
        XVIP: ''
    mchat:
        custVar:
            Default: ''
            Spieler: ''
            VIP: ''
            Support: ''
            Moderator: ''
            CoAdmin: ''
            Admin: ''
            XVIP: ''
        prefix:
            Default: '&1[&fNeu&1]&f '
            Spieler: ''
            VIP: '&1[&eVIP&1]&f '
            Support: '&1[&aSupport&1]&f '
            Moderator: '&1[&6MOD&1]&f '
            CoAdmin: '&1[&bCoAdmin&1]&f '
            Admin: '&1[&4Admin&1]&f '
            XVIP: '&1[&eXVIP&1]&d '
        suffix:
            Default: ''
            Spieler: ''
            VIP: ''
            Support: ''
            Moderator: ''
            CoAdmin: ''
            Admin: ''
            XVIP: ''
    worldnames:
        free2playV2: '[F2P]'
        free2fly: '[F2F]'
        free2playV2_nether: '[N]'
     
  6. Offline

    xxldoener

    Now I have a question: Is there a way to exclude commands as there was in Permissions?
    I included 'superpermsbridge.essentials: true' to my permissions which works perfectly fine.
    But when I try to exclude a command e.g. 'superpermsbridge.essentials.afk: false' I am still able to use the command. I also tried 'superpermsbridge.-essentials.afk: true' but that doesn't work either.
    Is there any other way to exclude commands or do I just have to add every single command???
     
  7. Offline

    Kellis

    Unfortunately, this did not help. Which file i should show?
     
  8. i want the unassignet newcommers to go directly into the beginner group. what can i do ?

    the config actually on local host:

    users:
    Subba:
    groups:
    - default <-- why?
    groups:
    beginner:
    permissions:
    permissions.build: false
    commandbook.kit.kits.beginner: true
    admin:
    permissions:
    permissions.*: true
    inheritance:
    - settler
     
  9. I used Permissions before, but this builtin stuff.... I just dont get it. I've managed to give my admin account every right but giving rights to other accounts just dont work for me. I tried making Warps work for instance but just cant. Is there any nice noob-guide out there to this?
     
  10. Offline

    KUJO_

    Hello, I have a serious issue... I do not have permission for the permission commands. It suddenly happened, everything was working fine before.
    When I run any perm commands (or permission) on the server CMD I get - [INFO] You do not have permission to do that.
    Also when I do it from in-game OP admin that has permissions to permissions.*
    What is happening?
    Thanks in charge [creeper]
     
  11. Offline

    Celtic Minstrel

    Um, the download link is only right in the middle of the page I linked. What you would want to do is delete your WorldEdit jar and replace it with that one (preferably renaming it to WorldEdit.jar).
     
  12. Offline

    Darcion

    that worked very well, you have to give the correct nodes, look into my posted permissions, it 1 or 2 pages before.
     
  13. Offline

    wolf hatake

  14. Offline

    TangoFox4

    Hey, i tried and tried but it does not work!
    I tried the superpermbridge with essentials, stargate and mywarp but the user can't set their home or warp or anything :/
    Here are my permissions:
    Code:
    users:
        TangoFox4:
            permissions:
                permissions.example: true
            groups:
            - admin
        user1:
            permissions:
                permissions.example: true
            groups:
            - user
        user2:
            permissions:
                permissions.example: true
            groups:
            - user
        user3:
            permissions:
                permissions.example: true
            groups:
            - user
        user4:
            permissions:
                permissions.example: true
            groups:
            - user
        user5:
            permissions:
                permissions.example: true
            groups:
            - user
        user6:
            permissions:
                permissions.example: true
            groups:
            - user
        user7:
            permissions:
                permissions.example: true
            groups:
            - user
        user8:
            permissions:
                permissions.example: true
            groups:
            - user
    groups:
        default:
            permissions:
                permissions.build: false
        admin:
            permissions:
                permissions.*: true
                superpermbridge.stargate.destroy: true
                superpermbridge.stargate.admin: true
            inheritance:
            - user
        user:
            permissions:
                superpermbridge.stargate.use: true
                superpermbridge.stargate.option: true
                superpermbridge.mywarp.warp.soc.public: true
                superpermbridge.mywarp.warp.soc.private: true
                superpermbridge.mywarp.warp.sign.warp: true
                superpermbridge.mywarp.warp.basic.*: true
                superpermbridge.essentials.sethome: true
            worlds:
                world:
                    permissions.build: true
                    superpermbridge.stargate.create: true
                world_nether:
                    permissions.build: true
                sky:
                    permissions.build: true
                limbo:
                    permissions.build: false
            inheritance:
            - default
    messages:
        build: '&cYou do not have permission to build here.'
    Please help :(
     
  15. Offline

    Boltblaster

    I am still having issues, especially with permissions not being available TO THE CONSOLE ITSELF. I've tried just about everything I could think of. Can someone please post a WORKING CONFIG so that others can copy and build on that? GREATLY appreciated.

    EDIT: Seems to me that Superpermbridge destroys everything.... It looks like it works without it, but with it...
     
  16. Offline

    FlawlezZ

    Why is everything going MORE complicated. Permissions 2.X were SO nice, but since 3.X it has gone FAR down
     
  17. Offline

    TheMap

    I agree, although I have this one working it seems to have taken a step back in convenience requiring much more work then necessary to use than other permissions. Calling it official makes it seem as though everyone has to use it but its just a pain in the butt to keep converting to new permissions over an over for the server owners and the developers as well.

    So we have 3 different versions now? And now im finding out some devs may not even support this version so some of the old plugins I used in the past are going to be useless. Its a shame really, that all the permissions people cannot just focus on one single permissions and stop causing a void in the bukkit plugins.
     
  18. Offline

    KUJO_

    Bump... I really need help with that, doesn't anyone know how to deal with it?
    Thanks
     
  19. Offline

    erickingsr


    LOL - The very NEXT day you were on the PermissionsEX forums asking about setup..... so how's the 'Official' Self-Titled Bukki Permissions working for you now GmK?
     
  20. Offline

    wolf hatake

  21. Offline

    Milchbub

    For these ones you need PermissionsBukkit, SuperpermsBridge and mChat:

    config.yml of PermissionsBukkit: Here
    info.yml of mChat: Here

    Tell me if something's wrong ;)


    EDIT: Uuups, nearly forgot why I've been here xD
    Is there a way to translate the Message "You don't have Permission!" ?
     
  22. Offline

    NinjaZidane

    into another language? If you give me exactly what you need said, I can make the change...recompile the jar....and give you a build back

    OR

    I can modify PermBukkit to have a config file option to set that custom message ;)
     
  23. Offline

    Milchbub

    Wow, what an offer! Hum, for me (and probably all the other Germans out there ;)) it would be enough to change it to "Du hast nicht die Rechte für diesen Befehl!" but an extra-line in the config would be the the icing on the cake of course :D
    I suppose it's more complex to add an entry in the config so please decide for yourself :)
    And thank you very much!
     
  24. Offline

    Darcion

    whats wrong with my permissions it worked all very good look my post http://forums.bukkit.org/threads/ad...-groups-plugin-1000.26785/page-44#post-641921

    so i think there are many misunderstandings, you only need permissionsbukkit and superpermbridge for getting the inheritances from other groups and some special nodes like '*' (new one is superpermbridge.*).

    you can try the groupmanager converter, it worked well for my permissions 3.1.5
     
  25. Offline

    GmK

    Oh when I found out that HeroChat supports PEX (or rather the other way round) it was reason enough to switch to PEX. I still think that this one here is the more basic, solid plugin, but the HeroChat fact makes all the difference to us ;)
     
  26. Offline

    rezznov

    please help my permissions are not working
    heres my config.yml
    users:
    rezznov:
    permissions:
    mobdisguise.wolf: true
    permissions.*: true
    groups:
    - adminwolf
    souljabri557:
    permissions:
    permissions.build: true
    groups:
    - outcast
    Ipskies:
    permissions:
    permissions.build: true
    groups:
    - miner
    fireicez1:
    permissions:
    permissions.build: true
    groups:
    - farmer
    qdj252:
    permissions:
    permissions.*: true
    groups:
    - admincitizen
    groups:
    default:
    permissions:
    permissions.build: false
    admincitizen:
    permissions:
    permissions.*: true
    mobdisguise.*: false
    inheritance:
    - citizen
    adminwolf:
    permissions:
    permissions.*: true
    mobdisguise.wolf: true
    localareachat.shout: false
    inheritance:
    - wolf
    citizen:
    permissions:
    permissions.build: true
    mobdisguise.*: false
    worlds:
    creative:
    coolplugin.item: true
    inheritance:
    - default
    wolf:
    permissions:
    permissions.build: true
    mobdisguise.wolf: true
    localareachat.shout: false
    essentials.*: false
    worlds:
    creative:
    coolplugin.item: true
    inheritance:
    - default
    outcast:
    permissions:
    permissions.build: true
    mobdisguise.*: false
    LocalAreaChat.shout: false
    worlds:
    creative:
    coolplugin.item: true
    inheritance:
    - default
    miner:
    permissions:
    permissions.build: true
    mobdisguise.*: false
    localareachat.*: false
    inheritance:
    - default
    farmer:
    permissions:
    permissions.build: true
    mobdisguise.*: false
    localareachat.shout: false
    inheritance:
    - default
    warrior:
    permissions:
    permissions.build: true
    mobdisguise.*: false
    localareachat.shout: false
    inheritance:
    - default
    messages:
    build: '&csorry.'


    heres my bootup
    151 recipes
    16 achievements
    17:50:14 [INFO] Starting minecraft server version Beta 1.7.3
    17:50:14 [INFO] Loading properties
    17:50:14 [INFO] Starting Minecraft server on *:25565
    17:50:14 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-980-g4ed23b1-b1060jnks (MC: 1.7.3)
    17:50:15 [INFO] Preparing level "world"
    17:50:15 [INFO] Preparing start region for level 0 (Seed: -3216506585637203)
    17:50:16 [INFO] Preparing start region for level 1 (Seed: -5168719630538663297)
    17:50:16 [INFO] Preparing spawn area: 4%
    17:50:17 [INFO] AntiCreeper v2.0 - by Rothens
    17:50:17 [INFO] Anticreeper v2.0 - STARTED
    17:50:17 [INFO] PermissionsBukkit v1.1 is now enabled
    17:50:17 [INFO] Permission system not detected
    17:50:17 [INFO] [LocalAreaChat] Radius set to 40
    17:50:17 [INFO] LocalAreaChat version 0.07.1b is enabled!
    17:50:17 [INFO] [MobDisguise] by desmin88 version 1.6 enabled.
    17:50:17 [INFO] Server permissions file permissions.yml is empty, ignoring it
    17:50:17 [INFO] Done (0.195s)! For help, type "help" or "?"

    heres my plugins
    MobDisguise, AntiCreeper, LocalAreaChat, PermissionsBukkit


    please help
     
  27. Offline

    Furious1964

    Having the same problems too, except for Levelcraft. I set permissions up correctly and I can't grant any levels....I'm the freaking admin, for Christ sakes!
     
  28. Offline

    Jaker232

    How do I set the default group, or is the first one set up automatically?
     
  29. Offline

    Smokie23

    What kind of permissions is this?!?! I can't even use the commands as Admin.
    I have this problem too! I can't use commands as admin and even with "superpermbridge.*: true". I have tried both "superpermbridge.permissions.*: true" and "permissions.*: true". When I type in /perm and I have no permission to use it?
    How do I give myself all permission commands no matter what group i'm in? Do I really have to type EVERY command in manually? and don't point me to permissions.yml because thats the same thing.
    - bukkit 1060
    - permissionsbukkit 1.1
    - superpermsbridge 1.2
    permission part of my config
    Code:
    users:
        Smokie23:
            permissions:
    #            permissions.player.setgroup: true
                superpermbridge.*: true
                 permissions.*: true
                lwc.admin: true
            groups:
            - Admin
    groups:
        Admin:
            permissions:
                mchat.group.Admin: true
                mchat.prefix.Admin: true
                mchat.group.Moderator: false
                mchat.prefix.Moderator: false
    
            inheritance:
            - Moderator
     
  30. Offline

    Deathlysteve-

    OMG IT STILL DOESNT WORK :mad:
    Its like, nothing that mChat is supposed to do works! :( the chat still looks like '<Patane> hello' (wih the < >, not the : like it is set in mChat config) so maybe mChat isnt working or something is blocking it???

    Also another reason why i think SOMETHING is blocking it is that when i look at my name say through typing /list (view online players) it shows my name how it SHOULD be :) but not when i talk in chat -.-
    Here are ALL my plugins:

    Achievement
    AntiXRay
    Apple Tree
    Auto Kick
    Auto Message
    Bed Heal
    BigBrother
    Block Crusher
    Blocks on Glass
    BookWorm
    ChairCraft
    ChopTree
    CraftBook
    CraftBook Circuits
    CraftBook Mechanisms
    Custom Messages
    Essentials
    Essentials Protect
    Essentials Spawn
    Flow Control
    Freezer
    Heroic Death
    iConomy
    IntelliDoors
    iPaint
    iWolvesAdoption
    Jail
    LazyRoad
    LWC
    Magic Carpet
    Magnet Block
    mChat
    MinecraftViewer
    MobRider
    MultiInv
    MultiVerse-Core
    MultiVerse-NetherPortals
    MultiVerse-Portals
    NoCheat
    nSpleef
    PermissionsBukkit
    Pick Boat
    Portal Stick
    Push Cube
    Questioner
    RAM
    SignColours
    SimpleSignEdit
    SpawnBlocks
    SpawnMob
    Spout
    Spout Essentials
    Spyer Admin
    Spyer Fun
    Stackable
    Starter Kit
    SuperpermsBridge
    Text Wrap
    Towny
    TrainCarts
    Votifier
    Weather Control
    Wireless Redstone
    World Edit
    World Guard

    (LONG LIST AYE?)
    now...
    here are ALL my config files:

    PermissionsBukkit Config:
    Code:
    users:
        Patane:
            permissions:
            groups:
            - Admin
        danrox:
            permissions:
            groups:
            - Admin
        Strikeout99:
            permissions:
            groups:
            - Moderator
        goco105:
            permissions:
            groups:
            - Moderator
            - PortalCrew
        thechodusbrother:
            permissions:
            groups:
            - Diamond
            - PortalCrew
        Shocksniper4:
            permissions:
            groups:
            - Diamond
            - PortalCrew
        deedeedog01:
            permissions:
            groups:
            - Diamond
        Ningro:
            permissions:
            groups:
            - Gold
        Mazi1324:
            permissions:
            groups:
            - Gold
    groups:
        Admin:
            permissions:
                superpermbridge.*: true
                permissions.build: true
                mchat.prefix.Admin: true
                mchat.prefix.Moderator: false
            inheritance:
        Moderator:
            permissions:
                jail.command.jail: true
                jail.command.unjail: true
                iConomy.admin.account.create: true
                iConomy.admin.account.remove: true
                citizens.npccount.3: true
                tpahere: true
                essentials.tphere: true
                bb.admin.info: true
                bb.admin.rollback: true
                permissions.build: true
            inheritance:
            - Gold
        Gold:
            permissions:
                citizens.npccount.4: true
                magiccarpet.ml: true
                essentials.tp: true
                magiccarpet.mc: true
                citizens.npccount.2: false
                essentials.tphere: true
                permissions.build: true
            inheritance:
            - Iron
        Diamond:
            permissions:
                citizens.npccount.8: true
                nocheat.moving: true
                jail.command.jail: true
                jail.command.unjail: true
                citizens.npccount.4: false
                permissions.build: true
            inheritance:
            - Gold
        Iron:
            permissions:
                citizens.npccount.2: true
                WeatherControl.status: true
                WeatherControl.help: true
                WeatherControl.weather: true
                WeatherControl.thunder: true
                WeatherControl.clear: true
                essentials.time: true
                essentials.time.world: true
                citizens.npccount.1: false
                permissions.build: true
            inheritance:
            - Member
        Member:
            permissions:
                citizens.npccount.1: true
                citizens.waypoints.edit: 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.use.teleport: true
                citizens.basic.modify.move: true
                citizens.basic.modify.moveto: true
                citizens.basic.modify.copy: true
                citizens.basic.modify.remove: true
                citizens.basic.modify.rename: true
                citizens.basic.modify.color: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.resettext: true
                citizens.basic.modify.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.healer.use.help: true
                citizens.healer.use.status: true
                citizens.healer.modify.levelup: true
                citizens.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.trader.use.list: true
                citizens.trader.modify.money: true
                citizens.trader.modify.stock: true
                citizens.trader.modify.clearstock: true
                citizens.wizard.use.help: true
                citizens.wizard.use.status: true
                citizens.wizard.use.locations: true
                citizens.wizard.modify.mode: true
                citizens.wizard.modify.addloc: true
                citizens.wizard.modify.removeloc: true
                permissions.build: true
            inheritance:
            - Default
        default:
            permissions:
                bog.*: true
                bof.*: true
                boi.*: true
                bookworm.create: true
                bookworm.write.own: true
                bookworm.remove.own: true
                bookworm.destroy.own: true
                bookworm.copy.own: true
                chaircraft.sit: true
                choptree.chop: true
                citizens.blacksmith.use.repair: true
                citizens.healer.use.heal: true
                citizens.trader.use.trade: true
                citizens.wizard.use.interact: true
                craftbook.mech.cauldron: true
                craftbook.mech.elevator.use: true
                craftbook.mech.gate: true
                craftbook.mech.light-switch: true
                craftbook.mech.bridge: true
                essentials.afk: true
                essentials.help: true
                essentials.me: true
                essentials.list: true
                essentials.mail: true
                essentials.mail.send: true
                essentials.motd: true
                essentials.msg: true
                essentials.rules: true
                essentials.whois: true
                jail.usercmd.jailstatus: true
                jail.usercmd.jailpay: true
                lwc.protect: true
                mobRider.animals: true
                mobRider.monsters: true
                simplesignedit.edit: true
                spawnblocks.use: true
                spyer.fun: true
                spyer.stopmobs.fun: true
                towny.town.new: true
                towny.town.claim: true
                towny.town.resident: true
                towny.wild.*: true
                towny.top: true
                war.player: true
                war.warp: true
                iConomy.access: true
                iConomy.bank.access: true
                iConomy.bank.deposit: true
                iConomy.bank.join: true
                iConomy.bank.leave: true
                iConomy.bank.list: true
                iConomy.bank.main: true
                iConomy.bank.main.change: true
                iConomy.bank.main.set: true
                iConomy.bank.main.view: true
                iConomy.bank.transfer: true
                iConomy.bank.withdraw: true
                iConomy.list: true
                iConomy.payment: true
                iConomy.rank: true
                nSpleef.member.join: true
                nSpleef.member.leave: true
                nSpleef.member.list: true
                nSpleef.member.wager: true
                citizens.blacksmith.use.status: true
                essentials.pay: true
                essentials.spawn: true
                towny.spawntp: true
                essentials.sethome: true
                essentials.home: true
                permissions.build: true
        PortalCrew:
            permissions:
                multiverse.tp: true
                ipaint.paint: true
                portalstick.placeportal: true
                portalstick.creategrill: true
                portalstick.deletegrill: true
                portalstick.teleport: true
                portalstick.admin.regions: true
                portalstick.damageboots: true
                permissions.build: true
            inheritance:
            - Diamond
    messages:
        build: '&cYou do not have permission to build here.'
    mChat Config:
    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, mchat-playerEvent-format are restricted to:
    #       +suffix,+s, +prefix,+p, +group,+g, +world,+w, +time,+t, +name,+n, +dname,+dn, +health,+h +healthbar,+hb
    #           **************
    
    mchat-join-message: has joined RPNations!
    mchat-date-format: HH:mm:ss
    auto-Changed: 1
    mchat-API-only: false
    mchat-name-format: +p+dn+s&e
    mchat-playerEvent-format: +p+dn+s&e
    mchat-kick-message: has been kicked from RPNations for +r.
    mchat-message-format: '+hb+p+dn+s&f: +message'
    mchat-leave-message: has left RPNations!
    mChat Info:
    Code:
    # mChat Info config
    # Only needed if using PermissionsBukkit, superperms.
    
    groupnames:
        Default: ''
        Member: ''
        Iron: ''
        Gold: ''
        Diamond: ''
        Moderator: ''
        Admin: ''
    worldnames:
        world: ''
        Portalworld: '[PW]'
    mchat:
        custVar:
            Default: ''
            Member: ''
            Iron: ''
            Gold: ''
            Diamond: ''
            Moderator: ''
            Admin: ''
        prefix:
            Default: ''
            Member: ''
            Iron: ''
            Gold: ''
            Diamond: ''
            Moderator: ''
            Admin: '[Admin]'
        suffix:
            Default: ''
            Member: ''
            Iron: ''
            Gold: ''
            Diamond: ''
            Moderator: ''
            Admin: ''
    
    
    (AT THE MOMENT IM NOT TRYING TO MAKE MY NAME IN COLOUR...BUT JUST TO HAVE AT LEAST [Admin] IN FRONT OF IT...)
    that is all hope you can find out whats wrong :(
     
  31. Offline

    fugos

    @Deathlysteve-
    MAKE IT IN CODE!!! (copy and paste it into a code) then delete the rest so it doesnt take up this much room!)

    My god your post is taking up ridiculous amounts of space.
     

Share This Page