[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

    Teddeh

    Promoting on this is like writing a Harry Potter book.

    Can't you make it like:

    /Perms group <Name> <Rank>
     
  3. Offline

    dpakman

    Hi, I am having problems migrating from Perm 3.x to PermissionsBukkit. I am getting the "you don't have permission to build" everywhere. I have four different worlds using Multiverse. I would like different permissions for different groups within each world. I would also like the default group to be called "Guest" and not "default". Can you look over this config.yml file and suggest changes? Thanks!

    Code:
    users:
        dpakman:
            permissions:
            groups:
            - Admin
        clarapakman:
            permissions:
            groups:
            - Family
        sampakman:
            permissions:
            groups:
            - Family
        zageek:
            permissions:
            groups:
            - Trusted
        robrobot2:
            permissions:
            groups:
            - Trusted
        jrt00:
            permissions:
            groups:
            - Member
        TimeSpaceWarrior:
            permissions:
            groups:
            - Trusted
        thezombie007:
            permissions:
            groups:
            - Member
        Th3_H1N1:
            permissions:
            groups:
            - Trusted
        Mickey16:
            permissions:
            groups:
            - Trusted
        eco5678:
            permissions:
            groups:
            - Trusted
        chsgray20:
            permissions:
            groups:
            - Member
        dipplo:
            permissions:
            groups:
            - Guest
        r4g4:
            permissions:
            groups:
            - Trusted
        awesome_lucky:
            permissions:
            groups:
            - Trusted
        fluffycheese:
            permissions:
            groups:
            - Member
        jets4life:
            permissions:
            groups:
            - Trusted
        xboxbus:
            permissions:
            groups:
            - Member
        wiibox92:
            permissions:
            groups:
            - Member
        b1ad3:
            permissions:
            groups:
            - Trusted
        Grain607:
            permissions:
            groups:
            - Trusted
        djgregny:
            permissions:
            groups:
            - Member
        master_drucker:
            permissions:
            groups:
            - Trusted
        jeakish98:
            permissions:
            groups:
            - Member
        jonsteinberg:
            permissions:
            groups:
            - Trusted
        bokelley:
            permissions:
            groups:
            - Member
        Reload59:
            permissions:
            groups:
            - Trusted
        NApentathol:
            permissions:
            groups:
            - Trusted
        Todd794:
            permissions:
            groups:
            - Trusted
        Tyuyu:
            permissions:
            groups:
            - Trusted
        jenthebabe:
            permissions:
            groups:
            - Trusted
        skateereer:
            permissions:
            groups:
            - Member
        noahjk:
            permissions:
            groups:
            - Guest
        chris32:
            permissions:
            groups:
            - Member
        solymarpeople:
            permissions:
            groups:
            - Member
        benwert:
            permissions:
            groups:
            - Member
        Evan_Peterson:
            permissions:
            groups:
            - Member
        Angryjukebox:
            permissions:
            groups:
            - Member
        Gombabomb:
            permissions:
            groups:
            - Member
        fanburger:
            permissions:
            groups:
            - Guest
        R4FFO:
            permissions:
            groups:
            - Trusted
        jbm1999:
            permissions:
            groups:
            - Member
        zboy2002:
            permissions:
            groups:
            - Member
        jakegalli:
            permissions:
            groups:
            - Member
        treehampster:
            permissions:
            groups:
            - Member
        monkeverest:
            permissions:
            groups:
            - Member
    groups:
        Guest:
            default: true
            permissions:
                permissions.build: false
                essentials.help: true
                essentials.motd: true
                essentials.rules: true
                essentials.kit: true
                essentials.kit.tools: true
                essentials.mail.send: true
                essentials.mail: true
            worlds:
                creative:
                    permissions.build: false
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
        Member:
            permissions:
                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.move: true
                citizens.basic.use.moveto: true
                citizens.basic.use.remove: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.lookat: true
                citizens.basic.modify.talkclose: 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.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.trader.use.list: true
                citizens.trader.use.trade: true
                citizens.wizard.use.help: true
                citizens.wizard.use.status: true
                citizens.wizard.use.interact: true
                citizens.npccount.5: true
                citizens.waypoints.edit: true
                essentials.pay: true
                essentials.worth: true
                essentials.list: true
                essentials.balance: true
                essentials.getpos: true
                essentials.home: true
                essentials.nick: true
                essentials.depth: true
                essentials.compass: true
                essentials.sethome: true
                essentials.sell: true
                essentials.me: true
                essentials.back: true
                essentials.signs.use.balance: true
                essentials.signs.use.buy: true
                essentials.signs.use.sell: true
                essentials.signs.use.trade: true
                essentials.signs.use.free: true
                essentials.signs.use.disposal: true
                essentials.signs.use.heal: true
                essentials.signs.use.mail: true
                essentials.signs.use.time: true
                essentials.signs.use.warp: true
                essentials.signs.use.weather: true
                EasyFlight.fly.self: true
            worlds:
                creative:
                    permissions.build: true
                world:
                adventure:
                nether:
            inheritance:
            - Guest
        Trusted:
            permissions:
                permissions.build: true
                essentials.delwarp: true
                essentials.jump: true
                essentials.setwarp: true
                essentials.warp: true
                essentials.msg: true
                essentials.tp: true
                essentials.list: true
                essentials.tpohere: true
                essentials.warp.list: true
                essentials.warp.otherplayers: true
                essentials.back.ondeath: true
                essentials.time: true
                locker.lockinfo: true
                locker.lock.self: true
                locker.unlock.self: true
                magiccarpet.mc: true
                magiccarpet.ml: true
            worlds:
                creative:
                    permissions.build: true
                    essentials.time: true
                    essentials.time.set: true
                    essentials.time.world: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Member
        Family:
            permissions:
                citizens.basic.modify.setowner: true
                locker.unlock.password: true
                locker.view.self: true
                essentials.eco: true
                essentials.invsee: true
                essentials.kick: true
                essentials.ban: true
                essentials.unban: true
            worlds:
                creative:
                    permissions.build: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Trusted
        Admin:
            permissions:
                permissions.build: true
                worldedit.analysis.count: true
                worldedit.analysis.distr: true
                essentials.god.others: true
                essentials.antioch: true
                essentials.backup: true
                essentials.ban: true
                essentials.ban.notify: true
                essentials.ban.offline: true
                essentials.banip: true
                essentials.broadcast: true
                essentials.burn: true
                essentials.clearinventory.others: true
                essentials.deljail: true
                essentials.essentials: true
                essentials.jails: true
                essentials.kick: true
                essentials.kick.exempt: true
                essentials.kick.notify: true
                essentials.kickall: true
                essentials.kill: true
                essentials.lightning: true
                essentials.setjail: true
                essentials.spawnmob: true
                essentials.tempban: true
                essentials.tempban.exempt: true
                essentials.tempban.offline: true
                essentials.thunder: true
                essentials.jail.exempt: true
                essentials.togglejail: true
                essentials.togglejail.offline: true
                essentials.unban: true
                essentials.unbanip: true
                superpermbridge.worldguard: true
                superpermbridge.worldedit.*: true
            worlds:
                creative:
                    permissions.build: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Family
    
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  4. Offline

    jkmalan

    @Teddeh
    You have to use SetRankPB which gives you a command that makes thing easier:
    /rank <player> <group>

    @dpakman
    You have to call the group default, but use a formatting plugin such as mChat to create prefixes. Your config looks pretty much fine except, in PermissionsBukkit, there is no default: true thats why you need to name the default group, default. Also, your permissions.build look fine. They should work and it might be the default: true thats throughing things off.
     
  5. Offline

    Ptonjalken

    Hey,

    For some reason i list myself (in group and user) as permissions.*:true , but i do not get put as an op. I have access to permissions controls, but it says in the info that i should be default op with this node? Is there something im doing wrong? ( i want to be able to /gamemode, etc, etc). thank you
     
  6. Offline

    Vezorock

    I am very confused, Is there any way to transfer permissions 3.x to permissionsbukkit without spending hours?
    Whats wrong with this?
    Code:
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
    groups:
        Member:
            default:true
            permissions:
                IBICF.fly: false
                ecoCreature.Creature.*:true
                superpowers.use: false
                superpowers.fly: false
                mobarena.use.*:true
                mobarena.classes.*:true
                mobarena.arenas.*:true
                mobarena.setup.*: false
                fight.user:true
                seats.sit:true
                BetterShop.user*:true
                permissions.build: true
                warpplugin.warp: true
        Admin:
            permissions:
                permissions.*: true
                superpermbridge.*:true
            inheritance:
            - Moderator
        Moderator:
            permissions:
                permissions.build: true
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - Member
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  7. Offline

    wonkothesane

    Isn't there a way to explicitly remove a single permissions node without listing out every possible permission?

    I have this permission set:
    commandbook.*: true

    But I want to remove just this one node:
    commandbook.override.any-item: false

    Problem is, setting commandbook.* to true seems to completely ignore any nodes that you subsequently set to false for that group, an inherited group, or an individual user. Very frustrating. Please tell me there's a way around this.
     
  8. Offline

    Liger_XT5

    The only changes I made was adding a space after the colon on each permission. Some did not have a space.
    Changed group Member to Default, I don't think there is a setting to make a particular group default.
    If anything, rename the group back to member and make a group called default and set a few permissions. It's best doing this to stop random people joining and griefing.
    I removed the line "default: true" and placed the "permissions.build: true" into the permissions area. This allows users to build, the Permissions 2/3 does it the old way. Commented out the permissions.build line out of the moderator group. No need to double add a permission for a group.
    By opinion, I moved the Admin group to the bottom to keep the levels in order. Makes things easier to tell who has what permission.

    If all that did not help. Make sure you have the SuperPermissionsBridge plugin installed as well as this plugin, other wise it does not work as intended. Then go to any plugin that doesn't state it works with permissionsbukkit and place the "superpermbridge." at the beginning. Don't worry about adding it to plugins that may support permissionsbukkit, it won't hurt it.

    Lastly, and not just saying it because I think you did or not, but anywhere you want to indent/tab a line over, use 4 (four) spaces. Don't ever use the tab key.

    Go into your console screen and type: op (your player name).
    That's all to it. Then when you are in the game and want to add someone else as OP, use /op (their name) into the chat of the game.

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

    Galameth


    If essentials and permissions is setup properly, there is absolutely no need for anyone to be opped. And, infact, opping anyone creates MASSIVE security holes.

    There is nothing that an op can do that an admin group cant do with permissions. But OP'ed people can bypass permissions settings completely.
     
  10. Offline

    dxwarlock

    maybe im missing something, or having issues with my syntax perms...
    Im trying to give ops ALL my commands from my plugins except /give

    Code:
        Aop:
            permissions:
                commandbook.give: false
                mchat.prefix.Aop: true
                mchat.suffix.Aop: true
                permissions.*: true
                superpermbridge.*: true
                '*': true
            inheritance:
            - Elder
    if I use this, my permsbukkit completely breaks..no ones permissions work, all my prefix/suffix die..
    how would I set this up to allow every command other than give for that group?

    I was using PEX, but it didnt like my shop plugin, and complained about no permission when they had it. this one seem to work ok with it...but the lack of being able to do like

    Code:
    permissions:
       - -commandbook.give
       - -other.command
       '*'
    
    is killing me..unless Im missing something obvious.
     
  11. Offline

    Galameth

    see any of the dozen configs i've posted for an example of proper formatting. As always, my config is drop-boxed at:

    http://dl.dropbox.com/u/34880594/config.yml

    Alot of it has to do with the *'s

    Half of us can get them to work, the other half cant. I would tell you to manually just enter all nodes with a setting for completeness sake, others would tell you to grab bridges.
     
  12. Offline

    dxwarlock

    Thanks Ill check it out :)

    I got the permsbridge installed. it just freaks out. would be so much better if my shop plugin liked pex (or pex liked it, not sure which). never had issues with pex at all. switching to permbukkit has been a 7 hour none stop fight to get my users working :p

    being able to remove one command, is a LOT less painful than having to add like 120 and putting them all as false...

    whats the chances of permissionsbukkit, and pexs bridge working together?
     
  13. Offline

    Galameth


    Couldnt tell ya! XD I've just started trudging through how to use permissions and have noticed repeated issues among other users so I dug through permissions nodes of plugins to learn what does and does not work format wise.

    And yes, it is tedious, BUT, the up side is there are many many fewer security holes AND there are actually a lot of neat things you can enable that you otherwise would have never had a clue of. It also helps you learn the system and your plugins through and through.
     
  14. Offline

    keyosuke

    I've been reading this thread for hours, gradually converting my permissions 3.0 config into a BukkitPerms config.yml, and I'm getting errors that look like this:
    Code:
    07:35:20 [SEVERE] Could not load 'plugins\bukkit-permissions-0.1.0-SNAPSHOT.jar'
     in folder 'plugins':
    while parsing a block mapping
     in "<reader>", line 31, column 5:
            mdalton10:
            ^
    expected <block end>, but found BlockMappingStart
     in "<reader>", line 102, column 6:
             Platypus1997:
             ^
    
            at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(Par
    serImpl.java:576)
            at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
            at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    and I just don't get why the first character of these user names seems to be the cause of the error. My syntax seems to match all of the examples I've looked at. Here is my config.yml , incase anybody has a moment to take a look. I admit, there are still some asterisks here at there, but this error seems to happen way before those are even parsed. The following config is abridged to make it fit.

    config.yml:
    Code:
    users:
        MDalton10:
            permissions:
            groups:
            - SuperAdmin
        RoboCaesar:
            permissions:
            groups:
            - Admins
        DundeeIgor:
            permissions:
            groups:
            - Builder
        Keyosuke:
            permissions:
            dispname.change: true
            multiverse.world.create: true
            multiverse.world.import: true
            multiverse.world.remove: true
            vanish.dont.hide: true
            groups:
            - SuperAdmin
        Dawn_:
            permissions:
            dispname.change: true
            vanish.vanish: true
            vanish.list: true
            vanish.nopickup: true
            vanish.nopickup.list: true
            vanish.noaggromobs: true
            vanish.dont.hide: true
            groups:
            - SuperAdmin
        lil_bunny:
            permissions:
            groups:
            - Lady
        ZamocDaNinja:
            permissions:
            groups:
            - Lord
        txtsd:
            permissions:
            herp.derp: true
            groups:
            - Builder
        Tamashiii:
            permissions:
            admincmd.item.add: true
            groups:
            - Admins
        Moderator:
            permissions:
            herp.derp: true
            groups:
            - Builder
        Player:
            permissions:
            groups:
            - Anonymous
        sodaman10:
            permissions:
            groups:
            - Admins
        DJ_slapaho:
            permissions:
            groups:
            - Lord
        harlink:
            permissions:
            groups:
            - Lord
         Platypus1997:
            permissions:
            groups:
            - Spectator
        akills34:
            permissions:
            groups:
            - Spectator
        linus123:
            permissions:
            groups:
            - Spectator
        edd3d:
            permissions:
            groups:
            - Spectator
        Platy_pus:
            permissions:
            groups:
            - Spectator
    groups:
        default:
            permissions:
                permissions.build: false
            inheritance:
            - Builder
        Spectator:
            permissions:
            - foo.bar
        ConsoleOp:
            permissions:
                permissions.*: true
                bflight.bfly: true
                admincmd.tp.location: true
                multiverse.list: true
                multiverse.navigation.*: true
                multiverse.tp: true
                bb.admin.info: true
                flight.can-buy-permit: true
                flight.can-glide: true
                flight.can-rise: true
                flight.can-perch: true
                flight.can-stop: true
                bookworm.copy.others: true
                bookworm.remove.others: true
                deathmessageplugin.getmessage: true
                bCoolDown.exception: false
                herochat.admin: false
                herochat.color: true
                herochat.create: true
                giveto.others: true
                giveto.self: true
                giveto.exempt.delay: true
                giveto.exempt.cost: true
                minecraft.help: true
                minecraft.kick: false
                minecraft.ban: false
                minecraft.pardon: false
                minecraft.ban-ip: false
                minecraft.pardon-ip: false
                minecraft.op: false
                minecraft.deop: false
                minecraft.tp: false
                minecraft.give: false
                minecraft.tell: true
                minecraft.stop: false
                minecraft.save-all: true
                minecraft.save-off: false
                minecraft.save-on: true
                minecraft.list: true
                minecraft.say: true
                minecraft.time: false
                minecraft.whitelist: false
                minecraft.me: false
                minecraft.time.set: false
                minecraft.time.add: false
        Lady:
            permissions:
                permissions.*: true
                admincmd.weather.clear: true
            inheritance:
            - Lord
        Lord:
            permissions:
                permissions.*: true
                bflight.bfly: true
                admincmd.tp.location: true
                multiverse.list: true
                multiverse.navigation.*: true
                multiverse.tp: true
                bb.admin.info: true
                flight.can-buy-permit: true
                flight.can-glide: true
                flight.can-rise: true
                flight.can-perch: true
                flight.can-stop: true
                bookworm.copy.others: true
                bookworm.remove.others: true
                deathmessageplugin.getmessage: true
                bCoolDown.exception: false
                herochat.admin: true
                herochat.color: true
                herochat.create: true
                giveto.others: false
                giveto.self: false
                giveto.exempt.delay: true
                giveto.exempt.cost: true
                minecraft.help: true
                minecraft.kick: false
                minecraft.ban: false
                minecraft.pardon: false
                minecraft.ban-ip: false
                minecraft.pardon-ip: false
                minecraft.op: false
                minecraft.deop: false
                minecraft.tp: false
                minecraft.give: false
                minecraft.tell: true
                minecraft.stop: false
                minecraft.save-all: true
                minecraft.save-off: true
                minecraft.save-on: true
                minecraft.list: true
                minecraft.say: false
                minecraft.time: false
                minecraft.whitelist: false
                minecraft.me: true
                minecraft.time.set: false
                minecraft.time.add: false
            inheritance:
            - Builder
        Anonymous:
            permissions:
                permissions.*: true
                foo.bar: true
        Builder:
            permissions:
                permissions.*: true
                citizens.trader.stock: true
                ecoCreature.Creature.*: true
                iConomy.access: true
                iConomy.rank: true
                iConomy.list: true
                iConomy.payment: true
                iConomyHealth.help: true
            inheritance:
            - default
        Moderator:
            permissions:
                permissions.*: true
                iConomy.admin.grant: true
                iConomy.admin.set: true
                iConomy.admin.reset: true
                iConomy.admin.hide: true
                iConomy.admin.account.create: true
                iConomy.admin.account.remove: true
                iConomy.admin.stats: true
                SpawnX.setspawn: true
                SpawnX.spawn: true
                SpawnX.*: true
                ChestShop.shop.create: true
                ChestShop.shop.admin: true
            inheritance:
            - Builder
        Admins:
            permissions:
                permissions.*: true
                residence.admin: true
                admincmd.player.afk: true
            inheritance:
            - Lord
        SuperAdmin:
            permissions:
                permissions.*: true
                admincmd.player.np.other: false
                admincmd.player.roll: false
                admincmd.player.afk: false
            inheritance:
            - Admins
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  15. Offline

    homeworlder_

    Could you perhaps make a built-in Prefix-suffix thing, so we wouldnt rely on mChat ?
     
  16. Offline

    Casper2b

    Oh ok I understand now! It's true with superpermbridge is very usefull and shorten the config file.

    Do you have any other advises for my server, permissions and plugin?
     
  17. Offline

    Celtic Minstrel

    @Casper2b – That's not what superpermbridge is for. In fact, @jkmalan – it's not true that giving superpermbridge.pluginname will give everything that plugin has. It will only work for plugins that still support the old Yeti/Niji permissions. For any other plugin you will need to check its documentation to see if there is a wildcard node... keeping in mind that a wildcard node might not actually have a * in it. (For example, to give all vanilla Minecraft commands, the wildcard permission is bukkit.command.) Sometimes it will have a *, for example with WorldEdit it's worldedit.* (but superpermbridge.worldedit should also work with WorldEdit and, unlike worldedit.*, won't require WorldEdit 4.7 or higher).

    @Galameth – Perhaps part of the issue is that whether the * notation works depends on the plugin. A plugin needs to explicitly support it now.

    @dxwarlock – Your issue is that you can't use the simple * with PermissionsBukkit; xyz.* permissions may or may not work just fine, depending on the plugin. However, I'm wondering why you needed to switch at all. Any plugin that supports PermissionsBukkit should automatically also support PEX, unless it does something stupid. What's your shop plugin?
     
  18. Offline

    juli7796

  19. Offline

    Timmylo

    Hello I recently started using your permissions plug in, I am new to permissions and wanted to set up a world edit and guard, now my issue is that they will not read permissions plug in and uses OP instead how do I make it use my permissions.yml
     
  20. Offline

    c0mp

    This plugin's configuration doesn't go in the permissions.yml file.
     
  21. Offline

    dxwarlock

    Thats what I thought, all the other plugins are good, and it works fine with Permissions Bukkit, just pex even if i give al groups the command..it still tells me in chat they need it when they do it :p
    KTShop, its complaining about needing shop.create.player

    I dont mind switching, Permbukkit plays nicer with towny/mchat/perfix for my chat :)
    justmy players are a fussy bunch. like 30 plugins, one small one like making a shop sign not working and they freak out going "DX!! servers broke!"..lol

    and dont want my mods running around with full godpowers on this one :)
     
  22. Offline

    BannerFigurezZz

    thanks :D

    I figured out some of those errors myself and indeed I had non existent stuff in it.
    That is because I thought that the stuff on main page of the plug in forums be the most updated , so I took permissions from there.
    However I now know that this was not the case and I was using old permission nodes.
    So thanks again and I now know how this works(a bit)

    current version, so far working version(needs more user testing): http://pastebin.com/f8nRYpRg
    I used your input for this and thanks for the heads up on the default group, could you check this a bit?

    ow and spaces dont work in pastebin so its a little bit messed up(explains the confusion?)
     
  23. Offline

    dpakman

    Hi, still cannot build for any user in any world. Can you please look at this config.yml file again? I'm not getting any errors, so this is hard to troubleshoot. Thanks!

    Code:
    users:
        dpakman:
            permissions:
            groups:
            - Admin
        clarapakman:
            permissions:
            groups:
            - Family
        sampakman:
            permissions:
            groups:
            - Family
        zageek:
            permissions:
            groups:
            - Trusted
        robrobot2:
            permissions:
            groups:
            - Trusted
        jrt00:
            permissions:
            groups:
            - Member
        TimeSpaceWarrior:
            permissions:
            groups:
            - Trusted
        thezombie007:
            permissions:
            groups:
            - Member
        Th3_H1N1:
            permissions:
            groups:
            - Trusted
        Mickey16:
            permissions:
            groups:
            - Trusted
        eco5678:
            permissions:
            groups:
            - Trusted
        chsgray20:
            permissions:
            groups:
            - Member
        dipplo:
            permissions:
            groups:
            - Guest
        r4g4:
            permissions:
            groups:
            - Trusted
        awesome_lucky:
            permissions:
            groups:
            - Trusted
        fluffycheese:
            permissions:
            groups:
            - Member
        jets4life:
            permissions:
            groups:
            - Trusted
        xboxbus:
            permissions:
            groups:
            - Member
        wiibox92:
            permissions:
            groups:
            - Member
        b1ad3:
            permissions:
            groups:
            - Trusted
        Grain607:
            permissions:
            groups:
            - Trusted
        djgregny:
            permissions:
            groups:
            - Member
        master_drucker:
            permissions:
            groups:
            - Trusted
        jeakish98:
            permissions:
            groups:
            - Member
        jonsteinberg:
            permissions:
            groups:
            - Trusted
        bokelley:
            permissions:
            groups:
            - Member
        Reload59:
            permissions:
            groups:
            - Trusted
        NApentathol:
            permissions:
            groups:
            - Trusted
        Todd794:
            permissions:
            groups:
            - Trusted
        Tyuyu:
            permissions:
            groups:
            - Trusted
        jenthebabe:
            permissions:
            groups:
            - Trusted
        skateereer:
            permissions:
            groups:
            - Member
        noahjk:
            permissions:
            groups:
            - Guest
        chris32:
            permissions:
            groups:
            - Member
        solymarpeople:
            permissions:
            groups:
            - Member
        benwert:
            permissions:
            groups:
            - Member
        Evan_Peterson:
            permissions:
            groups:
            - Member
        Angryjukebox:
            permissions:
            groups:
            - Member
        Gombabomb:
            permissions:
            groups:
            - Member
        fanburger:
            permissions:
            groups:
            - Guest
        R4FFO:
            permissions:
            groups:
            - Trusted
        jbm1999:
            permissions:
            groups:
            - Member
        zboy2002:
            permissions:
            groups:
            - Member
        jakegalli:
            permissions:
            groups:
            - Member
        treehampster:
            permissions:
            groups:
            - Member
        monkeverest:
            permissions:
            groups:
            - Member
    groups:
        default:
            permissions:
                permissions.build: false
        Guest:
            permissions:
                permissions.build: false
                essentials.help: true
                essentials.motd: true
                essentials.rules: true
                essentials.kit: true
                essentials.kit.tools: true
                essentials.mail.send: true
                essentials.mail: true
            worlds:
                creative:
                    permissions.build: false
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - default
        Member:
            permissions:
                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.move: true
                citizens.basic.use.moveto: true
                citizens.basic.use.remove: true
                citizens.basic.modify.settext: true
                citizens.basic.modify.addtext: true
                citizens.basic.modify.lookat: true
                citizens.basic.modify.talkclose: 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.trader.use.help: true
                citizens.trader.use.showmoney: true
                citizens.trader.use.list: true
                citizens.trader.use.trade: true
                citizens.wizard.use.help: true
                citizens.wizard.use.status: true
                citizens.wizard.use.interact: true
                citizens.npccount.5: true
                citizens.waypoints.edit: true
                essentials.pay: true
                essentials.worth: true
                essentials.list: true
                essentials.balance: true
                essentials.getpos: true
                essentials.home: true
                essentials.nick: true
                essentials.depth: true
                essentials.compass: true
                essentials.sethome: true
                essentials.sell: true
                essentials.me: true
                essentials.back: true
                essentials.signs.use.balance: true
                essentials.signs.use.buy: true
                essentials.signs.use.sell: true
                essentials.signs.use.trade: true
                essentials.signs.use.free: true
                essentials.signs.use.disposal: true
                essentials.signs.use.heal: true
                essentials.signs.use.mail: true
                essentials.signs.use.time:
                essentials.signs.use.warp:
                essentials.signs.use.weather: true
                EasyFlight.fly.self: true
            worlds:
                creative:
                    permissions.build: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Guest
        Trusted:
            permissions:
                permissions.build: true
                essentials.delwarp: true
                essentials.jump: true
                essentials.setwarp: true
                essentials.warp: true
                essentials.msg: true
                essentials.tp: true
                essentials.list: true
                essentials.tpohere: true
                essentials.warp.list: true
                essentials.warp.otherplayers: true
                essentials.back.ondeath: true
                essentials.time: true
                locker.lockinfo: true
                locker.lock.self: true
                locker.unlock.self: true
                magiccarpet.mc: true
                magiccarpet.ml: true
            worlds:
                creative:
                    permissions.build: true
                    essentials.time: true
                    essentials.time.set: true
                    essentials.time.world: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Member
        Family:
            permissions:
                citizens.basic.modify.setowner: true
                locker.unlock.password: true
                locker.view.self: true
                essentials.eco: true
                essentials.invsee: true
                essentials.kick: true
                essentials.ban: true
                essentials.unban: true
            worlds:
                creative:
                    permissions.build: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Trusted
        Admin:
            permissions:
                worldedit.analysis.count: true
                worldedit.analysis.distr: true
                essentials.god.others: true
                essentials.antioch: true
                essentials.backup: true
                essentials.ban: true
                essentials.ban.notify: true
                essentials.ban.offline: true
                essentials.banip: true
                essentials.broadcast: true
                essentials.burn: true
                essentials.clearinventory.others: true
                essentials.deljail: true
                essentials.essentials: true
                essentials.jails: true
                essentials.kick: true
                essentials.kick.exempt: true
                essentials.kick.notify: true
                essentials.kickall: true
                essentials.kill: true
                essentials.lightning: true
                essentials.setjail: true
                essentials.spawnmob: true
                essentials.tempban: true
                essentials.tempban.exempt: true
                essentials.tempban.offline: true
                essentials.thunder: true
                essentials.jail.exempt: true
                essentials.togglejail: true
                essentials.togglejail.offline: true
                essentials.unban: true
                essentials.unbanip: true
                essentials.bigtree: true
                essentials.give: true
                essentials.give.item-: false
                essentials.give.item-all: false
                essentials.itemspawn.exempt: true
                essentials.god: false
                essentials.god.others: true
                essentials.heal: true
                essentials.heal.cooldown.bypass: true
                essentials.heal.others: true
                essentials.item: false
                essentials.itemspawn.exempt: false
                essentials.itemspawn.item-: false
                essentials.itemspawn.item-: false
                essentials.itemspawn.item-all: false
                essentials.kit: true
                essentials.ptime: true
                essentials.ptime.others: true
                essentials.repair: true
                essentials.time: true
                essentials.time.set: true
                essentials.tree: true
                essentials.unlimited: true
                essentials.unlimited.item-: false
                essentials.unlimited.item-: false
                essentials.unlimited.item-all: true
                essentials.unlimited.item-bucket: true
                essentials.unlimited.others: true
                essentials.balance: true
                essentials.balance.others: true
                essentials.balancetop: true
                essentials.eco: true
                essentials.pay: true
                essentials.sell: true
                essentials.setworth: true
                essentials.worth: true
                essentials.afk: true
                essentials.afk.kickexempt: true
                essentials.compass: true
                essentials.depth: true
                essentials.getpos: true
                essentials.help: true
                essentials.helpop: true
                essentials.helpop.receive: true
                essentials.ignore: true
                essentials.info: true
                essentials.list: true
                essentials.list.hidden: true
                essentials.mail: false
                essentials.mail.send: false
                essentials.me: true
                essentials.motd: true
                essentials.msg: true
                essentials.nick: false
                essentials.nick.others: false
                essentials.powertool: true
                essentials.powertooltoggle: true
                essentials.msg: true
                essentials.realname: true
                essentials.rules: true
                essentials.seen: true
                essentials.spawner: true
                essentials.suicide: true
                essentials.whois: true
                essentials.antioch: true
                essentials.backup: true
                essentials.ban: true
                essentials.ban.exempt: true
                essentials.ban.notify: true
                essentials.ban.offline: true
                essentials.banip: true
                essentials.broadcast: true
                essentials.burn: true
                essentials.clearinventory: true
                essentials.clearinventory.others: true
                essentials.deljail: true
                essentials.essentials: true
                essentials.ext: true
                essentials.fireball: true
                essentials.gc: true
                essentials.invsee: true
                essentials.jails: true
                essentials.kick: true
                essentials.kick.exempt: true
                essentials.kick.notify: true
                essentials.kickall: true
                essentials.kill: true
                essentials.lightning: true
                essentials.mute: true
                essentials.mute.exempt: true
                essentials.nuke: true
                essentials.ping: true
                essentials.reloadall: true
                essentials.setjail: true
                essentials.socialspy: true
                essentials.spawnmob: true
                essentials.tempban: true
                essentials.tempban.exempt: true
                essentials.tempban.offline: true
                essentials.thunder: true
                essentials.jail.exempt: true
                essentials.togglejail: true
                essentials.togglejail.offline: true
                essentials.unban: true
                essentials.unbanip: true
                essentials.weather: true
                essentials.back: true
                essentials.back.ondeath: true
                essentials.delhome: true
                essentials.delhome.others: true
                essentials.delwarp: true
                essentials.home: true
                essentials.home.others: true
                essentials.jump: true
                essentials.sethome: true
                essentials.sethome.multiple: false
                essentials.sethome.multiple.unlimited: false
                essentials.sethome.others: true
                essentials.setwarp: true
                essentials.top: true
                essentials.tp: true
                essentials.tpa: true
                essentials.tpaall: true
                essentials.tpaccept: true
                essentials.tpahere: true
                essentials.tpall: true
                essentials.tpdeny: true
                essentials.tphere: true
                essentials.tpo: true
                essentials.tpohere: true
                essentials.tppos: true
                essentials.teleport.cooldown.bypass: true
                essentials.teleport.hidden: true
                essentials.teleport.timer.bypass: true
                essentials.tptoggle: true
                essentials.warp: false
                essentials.warp.: false
                essentials.warp.list: false
                essentials.warp.otherplayers: false
                essentials.portal: true
                essentials.world: false
                essentials.joinfullserver: true
                essentials.nocommandcost.: true
                essentials.nocommandcost.all: true
                essentials.signs.break.balance: true
                essentials.signs.break.buy: true
                essentials.signs.break.disposal: true
                essentials.signs.break.free: true
                essentials.signs.break.heal: true
                essentials.signs.break.mail: true
                essentials.signs.break.protection: true
                essentials.signs.break.sell: true
                essentials.signs.break.spawnmob: true
                essentials.signs.break.time: true
                essentials.signs.break.trade: true
                essentials.signs.break.warp: true
                essentials.signs.break.weather: true
                essentials.signs.color: true
                essentials.signs.create.balance: true
                essentials.signs.create.buy: true
                essentials.signs.create.disposal: true
                essentials.signs.create.free: true
                essentials.signs.create.heal: true
                essentials.signs.create.mail: true
                essentials.signs.create.protection: true
                essentials.signs.create.sell: true
                essentials.signs.create.spawnmob: true
                essentials.signs.create.time: true
                essentials.signs.create.trade: true
                essentials.signs.create.warp: true
                essentials.signs.create.weather: true
                essentials.signs.protection.override: true
                essentials.signs.trade.override: true
                essentials.signs.use.balance: true
                essentials.signs.use.buy: true
                essentials.signs.use.disposal: true
                essentials.signs.use.free: true
                essentials.signs.use.heal: true
                essentials.signs.use.mail: true
                essentials.signs.use.protection: true
                essentials.signs.use.sell: true
                essentials.signs.use.spawnmob: true
                essentials.signs.use.time:
                essentials.signs.use.trade: true
                essentials.signs.use.warp:
                essentials.signs.use.weather: true
                essentials.sleepingignored: true
                superpermbridge.worldguard: true
                superpermbridge.worldedit.*: true
            worlds:
                creative:
                    permissions.build: true
                world:
                    permissions.build: true
                adventure:
                    permissions.build: true
                nether:
                    permissions.build: true
            inheritance:
            - Family
    
    messages:
        build: '&cYou do not have permission to build here.'
    
     
  24. Offline

    Timmylo

    so how do get it to read the file then? It says 'can not find permissions plug in' or something

    [INFO] WorldEdit: No known permissions plugin detected. Using configuration file for permissions.
    [INFO] WorldGuard: No known permissions plugin detected. Using configuration file for permissions.

    Also for my nspleef plug in: [nSpleef] Could not find any permissions plugin. Only OPs will be able to use admin commands.

    as well as command book :(
    [INFO] CommandBook: No known permissions plugin detected. Using configuration file for permissions.
     
  25. Offline

    c0mp

    Sounds like you may need to update some of those plugins, if you truly do have this plugin installed. Please pastebin your startup log so we can see what's going on.

    And you don't 'get it to read the file'. You edit this plugin's configuration file, located where just about every other plugin's configuration file is located, in plugins/PluginName/config.yml, so in this case, plugins/PermissionsBukkit/config.yml
     
  26. Offline

    BannerFigurezZz

  27. Offline

    Timmylo

    sure thing, thanks for your help!

    Code:
    2011-10-03 10:10:14 [INFO] Starting minecraft server version Beta 1.8.1
    2011-10-03 10:10:14 [INFO] Loading properties
    2011-10-03 10:10:14 [INFO] Starting Minecraft server on *:25565
    2011-10-03 10:10:14 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-1067-g6301507-b1185jnks (MC: 1.8.1)
    2011-10-03 10:10:15 [INFO] LWC: Loading shared objects
    2011-10-03 10:10:15 [INFO] LWC: Protection cache: 0/10000
    2011-10-03 10:10:15 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/x86/sqlitejdbc.dll
    2011-10-03 10:10:15 [INFO] Preparing level "world"
    2011-10-03 10:10:15 [INFO] Default game type: 0
    2011-10-03 10:10:15 [INFO] Preparing start region for level 0 (Seed: 7807452588397485965)
    2011-10-03 10:10:16 [INFO] Preparing start region for level 1 (Seed: -5401492067414804889)
    2011-10-03 10:10:16 [INFO] Preparing spawn area: 0%
    2011-10-03 10:10:17 [INFO] CTR> Permission system not detected, defaulting to OP
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: banter,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: joingold,false
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: joingreen,false
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: jointeam,false
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: telegameworld,false
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: leavegame,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: stopgame,false
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: gametime,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: telegold,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: telegreen,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded allowed command: teamlist,true
    2011-10-03 10:10:17 [INFO] CTR> Loaded team chest item 32 of IRON_INGOT
    2011-10-03 10:10:17 [INFO] CTR> Loaded team chest item 1 of IRON_HELMET
    2011-10-03 10:10:17 [INFO] CaptureTheRecord version 0.9 is enabled!
    2011-10-03 10:10:17 [INFO] CTR> Registering commands
    2011-10-03 10:10:17 [INFO] CTR> Registered commands
    2011-10-03 10:10:17 [INFO] CommandBook 1.5.2 enabled.
    2011-10-03 10:10:17 [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some features have been disabled to be compatible with poorly written server wrappers.
    2011-10-03 10:10:17 [INFO] CommandBook: 0 banned name(s) loaded.
    2011-10-03 10:10:17 [INFO] CommandBook: 1 kit(s) loaded.
    2011-10-03 10:10:17 [INFO] CommandBook: No known permissions plugin detected. Using configuration file for permissions.
    2011-10-03 10:10:17 [INFO] Permission system not detected, defaulting to OP
    2011-10-03 10:10:17 [INFO] mobSpawner 1.7.3 enabled
    2011-10-03 10:10:17 [INFO] [nSpleef] Could not find any permissions plugin. Only OPs will be able to use admin commands.
    2011-10-03 10:10:17 [INFO] nSpleef version 0.4.3 is enabled!
    2011-10-03 10:10:17 [INFO] WorldEdit 4.6 enabled.
    2011-10-03 10:10:17 [INFO] WorldEdit: No known permissions plugin detected. Using configuration file for permissions.
    2011-10-03 10:10:17 [INFO] WorldGuard: No known permissions plugin detected. Using configuration file for permissions.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world) Single session is enforced.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world) TNT ignition is blocked.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world) Lava fire is blocked.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world) All fire spread is disabled.
    2011-10-03 10:10:17 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-10-03 10:10:17 [INFO] WorldGuard: (world_nether) Single session is enforced.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world_nether) TNT ignition is blocked.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world_nether) Lighters are PERMITTED.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world_nether) Lava fire is blocked.
    2011-10-03 10:10:17 [INFO] WorldGuard: (world_nether) All fire spread is disabled.
    2011-10-03 10:10:17 [INFO] WorldGuard: Loaded configuration for world 'world_nether"
    2011-10-03 10:10:17 [INFO] WorldGuard: 8 regions loaded for 'world'
    2011-10-03 10:10:17 [INFO] WorldGuard: Unable to register missing event type SNOW_FORM
    2011-10-03 10:10:17 [INFO] WorldGuard 5.2.2 enabled.
    2011-10-03 10:10:17 [INFO] LWC: Loaded 137 locale strings (0 overrides)
    2011-10-03 10:10:17 [INFO] LWC: Permissions API: BukkitPermissions
    2011-10-03 10:10:17 [INFO] LWC: Currency API: NoCurrency
    2011-10-03 10:10:17 [INFO] LWC: Loading SQLite
    2011-10-03 10:10:17 [INFO] LWC: Using: Native
    2011-10-03 10:10:17 [INFO] LWC: Precached 69 protections.
    2011-10-03 10:10:17 [INFO] LWC: At version: 3.52 (b281)
    2011-10-03 10:10:17 [INFO] [MyHome] 12 homes loaded
    2011-10-03 10:10:17 [INFO] [MyHome] Using localization: English (en_us)
    2011-10-03 10:10:17 [WARNING] [MyHome] A permission plugin isn't loaded.
    2011-10-03 10:10:17 [WARNING] [MyHome] Help plugin not detected. Only providing help via /home help.
    2011-10-03 10:10:17 [INFO] [MyHome] MyHome 2.0.1 enabled
    2011-10-03 10:10:17 [INFO] PermissionsBukkit v1.2 is now enabled
    2011-10-03 10:10:17 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-10-03 10:10:17 [INFO] Done (0.249s)! For help, type "help" or "?"
    2011-10-03 10:10:17 [INFO] [nSpleef] Arenas loaded!
    If you notice my LWC is detecting it which means it has to be installed correctly... correct? lmao
     
  28. Offline

    homeworlder_

  29. Offline

    Timmylo

    default should come automatically if you do not set somebody in a group
     
  30. Offline

    Liger_XT5

    To set a default group, name the group default.
     
    homeworlder_ likes this.
  31. Offline

    c0mp

    Okay, so you do have PermissionsBukkit, but you don't have the updated dev-builds of WorldEdit or WorldGuard. You shouldn't have to do anything in the PermissionsBukkit config.yml file for WorldEdit or WorldGuard once you've updated them.

    MyHome currently doesn't support Bukkit's built-in SuperPerms, so you'll need the SuperPermBridge plugin to get MyHome to recognize PermissionsBukkit. So for MyHome (and any other plugin lacking SuperPerms support) you'll need to add 'superpermbridge.' to the beginning of each node, so myhome.basic: true would be changed to superpermbridge.myhome.basic: true, and so on for each MyHome permission node you're using. EDIT: Never mind that, I was getting MyHome confused with MyWarp. MyHome supports the new permissions format, no SuperPermBridge needed. It's MyWarp that needs the special attention at the moment.

    And CTR I'm not sure about, don't use it, don't know what it is, don't know if there's a build that works for SuperPerms or not. If not, follow the above instructions for MyHome with each of the CTR nodes, after you've installed SuperPermBridge.
     

Share This Page