[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

    gerarddude5100

    how would u get rid of the chat saying "you don't have permission to build here"

    so that the blocks will just disappear without the message.
     
  3. Offline

    MeinerHosen

    Sorry to add another to the list of probably dumb posts, but this is what I'm getting with BukkitPermissions and the superpermsbridge along with essentials and some others.

    Code:
    2011-07-23 14:09:41 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
    at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:134)
    at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:104)
    at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
    at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
    at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:251)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
    at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:146)
    at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:117)
    at org.bukkit.craftbukkit.entity.CraftPlayer.kickPlayer(CraftPlayer.java:135)
    at com.sk89q.worldguard.bukkit.WorldGuardPlayerListener.onPlayerLogin(WorldGuardPlayerListener.java:124)
    at org.bukkit.plugin.java.JavaPluginLoader$12.execute(JavaPluginLoader.java:321)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
    at net.minecraft.server.ServerConfigurationManager.a(ServerConfigurationManager.java:184)
    at net.minecraft.server.NetLoginHandler.b(NetLoginHandler.java:82)
    at net.minecraft.server.NetLoginHandler.a(NetLoginHandler.java:33)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:91)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    I'm also getting a lot of broken pipes. Really hoping yall can help since the alternative is picking apart my server plugin by plugin :/
     
  4. Offline

    Jeffmcgee

    Code:
    users:
        jeffmcgee:
            permissions:
                permissions.example: true
            groups:
            - Admin
        Vegeta7141:
            permissions:
            groups:
            - Admin
    groups:
        Guest:
            permissions:
            mchat.prefix.guest: true
            essentials.list: true
            essentials.motd: true
            essentials.rules: true
            essentials.tpaccept: true
                permissions.build: false
        Member:
            permissions:
            essentials.helpop: true
            essentials.help: true
            essentials.getpos: true
            essentials.afk: true
            essentials.list: true
            essentials.mail: true
            essentials.mail.send: true
            essentials.motd: true
            essentials.msg: true
            essentials.rules: true
            essentials.back.ondeath: true
            essentials.sethome: true
            essentials.tpa: true
            essentials.tpaccept: true
            essentials.tpdeny: true
            essentials.warp: true
            essentials.portal: true
            essentials.nocommandcost.all: true
            essentials.protect.damage.creeper: true
            essentials.protect.damage.drowning: true
            essentials.protect.damage.fall: true
            essentials.protect.damage.fire: true
            essentials.protect.damage.fireball: true
            essentials.protect.damage.lava: true
            essentials.protect.damage.lightning: true
            essentials.protect.damage.projectiles: true
            essentials.protect.damage.suffocation: true
            essentials.protect.damage.tnt: true
            essentials.protect.entitytarget.bypass: true
            essentials.signs.break.mail: true
            essentials.signs.create.mail: true
            essentials.signs.use.mail: true
            iConomy.rank: true
            iConomy.payment: true
            iConomy.list: true
            iConomy.bank.withdraw: true
            iConomy.access: true
            towny.town.new: true
            towny.town.claim: true
            towny.nation.new: true
            towny.wild.build: true
            towny.wild.destroy: true
            towny.wild.item_use: true
            towny.spawntp: true
            towny.publicspawntp: true
            mobarena.arenas.*: true
            mobarena.classes.Chef: true
            mobarena.classes.Pyro: true
            mobarena.classes.Tank: true
            mobarena.classes.Archer: true
            mobarena.use.join: true
            mobarena.use.leave: true
            mobarena.use.spectate: true
                permissions.build: true
        Trusted:
            permissions:
            essentials.me: true
            essentials.tpahere: true
            essentials.tptoggle: true
            essentials.warp.list: true
            essentials.signs.use.disposal: true
            towny.wild.*: true
            mobarena.classes.Knight: true
                permissions.build: true
            inheritance:Member
        Moderator:
            permissions:
            essentials.helpop.receive: true
            essentials.ban: true
            essentials.broadcast: true
            essentials.ext: true
            essentials.invsee: true
            essentials.kick: true
            essentials.mute: true
            essentials.tempban: true
            essentials.unban: true
            essentials.setwarp: true
            essentials.top: true
            essentials.tphere: true
            essentials.tpo: true
            essentials.tpohere: true
            essentials.joinfullserver: true
            essentials.signs.break.disposal: true
            essentials.signs.create.disposal: true
            mobarena.admin.config.reload: true
            jail.command.jail: true
            jail.command.unjail: true
            jail.command.jailtransfer: true
            jail.command.jailcheck: true
            jail.command.jaillistcells: true
            setrank.rank: true
                permissions.build: true
            inheritance:Trusted
        Veteran:
            permissions:
            essentials.jump: true
            essentials.tp: true
                permissions.build: true
            inheritance:Trusted
        Donator:
            permissions:
            essentials.jump: true
            essentials.joinfullserver: true
                permissions.build: true
            inheritance:Trusted
        Admin:
            permissions:
                permissions.*: true
            inheritance:
            - user
        user:
            permissions:
                permissions.build: true
            group:
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    that's my config.yml, and i was wondering why it doesn't seem to be working. the main issue is getting the first player as admin, i.e. myself and vegeta7141, so we can add any others that come in game. we also have mchat installed, and i'm addind those nodes now, but they shouldn't affect the starter player.

    the main question i'm asking, is how do i set "jeffmcgee" to be admin, so that i can then start the server going? thanks for any help.
     
  5. Offline

    krinsdeath

    You've improperly indented every single group. Furthermore, you need to have a "default" group.

    Code:
    groups:
        default:
            permissions:
                permission.node1: true
                permission.node2: true
                permission.node3: true
        group1:
            permissions:
                permission.node4: true
                permission.node5: true
            inheritance:
            - default
    
    Can I get a look at your config.yml for PermissionsBukkit?
     
  6. Offline

    Jeffmcgee

    can default not be named guest? i'm guessing we can rename guest using mchat.

    with the default group, does permissions.build: false, have to be indented further than the nodes? sorry to be such a noob, but i'd prefer to get this all done at once.
     
  7. Offline

    CptSausage

    My fault. :X

    The whole stuff is really confusing. I don't understand the "default" thing.

    When I write something like this in my plugin.yml
    Code:
    permissions:
    myplugin.test:
    description: Just Testing
    default: false
    It looks like nobody will ever be able to use this command, because even when I give someone the permission with:
    He can still not use the command and /permissions check still says he doesn't have the permission?! :(

    So I guess it doesn't make sense to use the "default: false" at all?!
     
  8. Offline

    krinsdeath

    The group names that appear in your PermissionsBukkit config.yml have nothing to do with how they're displayed in-game (other than using /perm group list). If you want to make the group name visible (in the case of chatting, or something else), you'd use mChat as you described.

    default is hardcoded into PermissionsBukkit, so it needs to be there. As for indentation, it should match with the rest, ala this:

    Code:
    groups:
        default:
            permissions:
                permissions.build: false
                other.node1: true
                other.node2: true
    
    In the example you provided, you'd use '/perm player setperm CptSausage myplugin.test true'. You're missing the "player" flag ahead of your "setperm" flag.

    As for the default, this value is what Bukkit sets for users that initially join the server. With PermissionsBukkit, it reads the config.yml and applies the relevant permissions as they join, and effectively overrides any settings Bukkit has already applied. I am half asleep as I'm typing this, so I apologize if any of my explanations are ambiguous or hard to follow.

    Good night.
     
  9. Offline

    mrvertigo27

    residences is forcing permissions for version 2.X OVER superperms. i have permissions bridge as some plugins arent playing nice yet and noticed this in my output

    Code:
    08:44:30 [INFO] Cabinet version 1.5.2 is disabled!
    08:44:30 [INFO] [CustomDifficulty] has been disabled.
    08:44:30 [INFO] [DynamicMarket] Version 0.6.0 disabled.
    08:44:30 [INFO] Fire Tools Version 1.3 is DISABLED!
    08:44:30 [INFO] [iConomy] Plugin disabled.
    08:44:30 [INFO] [ATM] Payment method was disabled. No longer accepting payments.
    
    08:44:30 [INFO] [iConomyDeath] Payment method was disabled. No longer accepting
    payments.
    08:44:30 [INFO] [iConomyDeath] Plugin disabled!
    08:44:30 [INFO] [Landmarks] Saved C:\Users\home-pc\Desktop\server1000\plugins\La
    ndmarks\..\dynmap\web\markers.json
    08:44:30 [INFO] [Landmarks] Landmarks disabled.
    08:44:30 [INFO] [LogOres] version [0.6.3] unloaded
    08:44:30 [SEVERE] java.lang.NullPointerException
    08:44:30 [INFO] [MobileAdmin] Stopping server...
    08:44:30 [SEVERE]       at org.morganm.logores.LogOreLogger.flushWriters(LogOreL
    ogger.java:467)
    08:44:30 [SEVERE]       at org.morganm.logores.LogOreLogger.run(LogOreLogger.jav
    a:442)
    08:44:30 [SEVERE]       at org.bukkit.craftbukkit.scheduler.CraftWorker.run(Craf
    tWorker.java:34)
    08:44:30 [INFO] [MobileAdmin] Closing server socket
    08:44:30 [SEVERE]       at java.lang.Thread.run(Unknown Source)
    08:44:30 [INFO] [MobileAdmin] Saving server stats.
    08:44:30 [INFO] [MobileAdmin] Saving chat log.
    08:44:30 [INFO] [NightLand] unloaded
    08:44:30 [INFO] NoMovedTooQuicklyKick version 1.1 is disabled!
    08:44:30 [INFO] PermissionsBukkit v1.1 is now disabled
    08:44:30 [INFO] [Plugin_info] PLUGIN_INFO v1.01is DISABLED!!!
    08:44:30 [INFO] [Residence] - Saved Residences...
    08:44:30 [INFO] [Residence] Disabled!
    08:44:30 [INFO] SecretDoors v0.2 by MrChick disabled
    08:44:30 [INFO] CommandBook: Permissions plugin detected! Using Permissions plug
    in for permissions.
    08:44:30 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin
     for permissions.
    08:44:30 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugi
    n for permissions.
    08:44:30 [INFO] Vanilla Disabled
    08:44:30 [INFO] WorldGuard 5.0-alpha10 disabled.
    08:44:30 [INFO] [dynmap] Unloaded 10 components.
    08:44:30 [INFO] [dynmap] Stopping map renderer...
    08:44:30 [INFO] [dynmap] Shutting down webserver...
    08:44:30 [INFO] LWC: Freeing MySQL
    08:44:30 [INFO] [dynmap] Webserver shut down.
    08:44:30 [INFO] [Administrate] - Disabled!
    08:44:31 [INFO] [SuperpermBridge] Superperm/Permissions bridge initialized
    08:44:31 [INFO] LWC: Loading shared objects
    08:44:31 [INFO] LWC: Protection cache: 0/10000
    08:44:31 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/amd64/sqlite
    jdbc.dll
    08:44:31 [INFO] ControllerBlock: 1.18 by Hell_Fire
    08:44:31 [INFO] ControllerBlock: Using IRON_BLOCK (42) as ControllerBlock, loade
    d 0 disallowed types from config
    08:44:31 [INFO] [ATM] hooked into Permissions.
    08:44:31 [INFO] [ATM] Configuration file loaded!
    08:44:31 [INFO] [ATM] is up to date.
    08:44:31 [INFO] [ATM] version v1.8b2 is enabled.
    08:44:31 [INFO] [ATM] Payment method found (iConomy version: 5)
    08:44:31 [INFO] [BBROTHER] ------------------------------------
    08:44:31 [INFO] [BBROTHER] Hello, and thank you for using the TESTING version of
     BigBrother!
    08:44:31 [INFO] [BBROTHER] Please note that, since this is far from complete, th
    ere will be many bugs.
    08:44:31 [INFO] [BBROTHER] IF YOU FIND ANY BUGS, PLEASE REPORT THEM ON http://bu
    gs.nexisonline.net/bb
    08:44:31 [INFO] [BBROTHER] Please stay tuned in irc.esper.net #bigbrother for up
    dates and build notifications.
    08:44:31 [INFO] [BBROTHER] ------------------------------------
    08:44:31 [WARNING] [BBROTHER] Table BB_bbdata uses the MySQL storage engine Inno
    DB.
    08:44:31 [INFO] [BBROTHER] For optimal performance, we suggest changing to MyISA
    M via the following SQL statement:
    08:44:31 [INFO] [BBROTHER]   ALTER TABLE BB_bbdata ENGINE = MyISAM;
    08:44:31 [INFO] [BBROTHER] Please note that, on many tables, this could take a v
    ery long time.
    08:44:31 [INFO] [BBROTHER] BBData MySQL Driver r1 loaded!
    08:44:31 [INFO] [BBROTHER] Action #1 - BrokenBlock
    08:44:31 [INFO] [BBROTHER] Action #2 - PlacedBlock
    08:44:31 [INFO] [BBROTHER] Action #3 - DestroySignText
    08:44:31 [INFO] [BBROTHER] Action #4 - Teleport
    08:44:31 [INFO] [BBROTHER] Action #5 - DeltaChest
    08:44:31 [INFO] [BBROTHER] Action #6 - Command
    08:44:31 [INFO] [BBROTHER] Action #7 - Chat
    08:44:31 [INFO] [BBROTHER] Action #8 - Disconnect
    08:44:31 [INFO] [BBROTHER] Action #9 - Login
    08:44:31 [INFO] [BBROTHER] Action #10 - DoorOpen
    08:44:31 [INFO] [BBROTHER] Action #11 - ButtonPress
    08:44:31 [INFO] [BBROTHER] Action #12 - LeverSwitch
    08:44:31 [INFO] [BBROTHER] Action #13 - CreateSignText
    08:44:31 [INFO] [BBROTHER] Action #14 - LeafDecay
    08:44:31 [INFO] [BBROTHER] Action #15 - FlintAndSteel
    08:44:31 [INFO] [BBROTHER] Action #16 - TNTExplosion
    08:44:31 [INFO] [BBROTHER] Action #17 - CreeperExplosion
    08:44:31 [INFO] [BBROTHER] Action #18 - MiscExplosion
    08:44:31 [INFO] [BBROTHER] Action #19 - ChestOpen
    08:44:31 [INFO] [BBROTHER] Action #20 - BlockBurn
    08:44:31 [INFO] [BBROTHER] Action #21 - Flow
    08:44:31 [INFO] [BBROTHER] Action #22 - DropItem
    08:44:31 [INFO] [BBROTHER] Action #23 - PickupItem
    08:44:31 [INFO] [BBROTHER] Action #24 - SignDestroyed
    08:44:31 [INFO] [BBROTHER] Action #25 - Heartbeat
    08:44:31 [INFO] [BBROTHER] Action #26 - BlockPistoned
    08:44:31 [INFO] [BBROTHER] Permissions plugin found but disabled. Enabling 'Perm
    issions' (v2.7.7).
    08:44:31 [INFO] [SuperpermBridge] Superperm/Permissions bridge enabled
    08:44:31 [INFO] [BBROTHER] Permissions enabled using: Permissions v2.7.7
    08:44:31 [WARNING] [BBROTHER] 'Help' isn't detected. No /help support
    08:44:31 [INFO] [BBROTHER] BigBrother 1.10.0-SNAPSHOT (build #644) enabled!
    08:44:31 [INFO] [BukkitUpdater] Created BukkitUpdater directory
    08:44:31 [INFO] [BukkitUpdater] version 0.1.1 enabled.
    08:44:31 [INFO] [Cabinet] Permissions found hooking in.
    08:44:31 [INFO] [Cabinet] version 1.5.2 is enabled!
    08:44:31 [INFO] CommandBook 1.5.2 enabled.
    08:44:31 [INFO] CommandBook: Maximum wrapper compatibility is enabled. Some feat
    ures have been disabled to be compatible with poorly written server wrappers.
    08:44:31 [INFO] CommandBook: 5 banned name(s) loaded.
    08:44:32 [INFO] CommandBook: 1 kit(s) loaded.
    08:44:32 [INFO] CommandBook: Permissions plugin detected! Using Permissions plug
    in for permissions.
    08:44:32 [INFO] [Command iConomy] Verbose mode enabled.
    08:44:32 [INFO] [Command iConomy] Loaded.
    08:44:32 [INFO] ControllerBlock: Enabling full redstone check
    08:44:32 [INFO] ControllerBlock: Events registered
    08:44:32 [INFO] [CustomDifficulty] Hooked into WorldEdit v4.6.
    08:44:32 [INFO] [CustomDifficulty] Found the following 1 difficulties:
    default.
    08:44:32 [INFO] [CustomDifficulty] will use built-in regions.
    08:44:32 [INFO] [CustomDifficulty] Hooked into Permissions v2.7.7.
    08:44:32 [INFO] [CustomDifficulty] Hooked into iConomy v5.01.
    08:44:32 [INFO] [CustomDifficulty] Spawning activated for world mrvertigo27
    08:44:32 [INFO] [CustomDifficulty] Spawning activated for world mrvertigo27_neth
    er
    08:44:32 [INFO] [CustomDifficulty] version 4.1.1 has been enabled. (0.042s)
    08:44:32 [INFO] [DynamicMarket] Initializing Version 0.6.0.
    08:44:32 [INFO] [DynamicMarket] Linked with permissions successfully.
    08:44:32 [INFO] [DynamicMarket] Version 0.6.0 enabled.
    08:44:32 [INFO] [DynamicMarket] Linked with iConomy Version 5 successfully.
    08:44:32 [INFO] Fire Tools Version 1.3 is ENABLED!
    08:44:32 [INFO] Found and will use plugin Permissions v2.7.7
    08:44:32 [INFO] [iConomy] Logging is currently disabled.
    08:44:32 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    08:44:32 [INFO] [iConomy] Developed by: [Nijikokun]
    08:44:32 [INFO] [iConomy] hooked into Permissions.
    08:44:32 [INFO] [iConomyDeath] Loaded configuration for world 'mrvertigo27'
    08:44:32 [INFO] [iConomyDeath] Loaded configuration for world 'mrvertigo27_nethe
    r'
    08:44:32 [INFO] [iConomyDeath] version 0.7 is enabled!
    08:44:32 [INFO] [iConomyDeath] Payment method found (iConomy version: 5)
    08:44:32 [INFO] [Landmarks] Loading C:\Users\home-pc\Desktop\server1000\plugins\
    Landmarks\..\dynmap\web\markers.json
    08:44:32 [INFO] [Landmarks] Successfully loaded 0 markers.
    08:44:32 [INFO] [Landmarks] Landmarks 0.2 enabled.
    08:44:32 [INFO] [LogOres] version [0.6.3] loaded
    08:44:32 [INFO] [MobileAdmin] Loading server stats.
    08:44:32 [INFO] [MobileAdmin] Loading chat log.
    08:44:32 [INFO] [MobileAdmin] Loading users.
    08:44:32 [INFO] [MobileAdmin] Starting server...
    08:44:32 [INFO] [MobileAdmin] Version 3.0 is enabled!
    08:44:32 [INFO] [MobileAdmin] Server listening on *:5839
    08:44:32 [INFO] [MYWARP] [MYWARP]: 3 warps loaded
    08:44:32 [INFO] [MYWARP] Permissions enabled using: Permissions v2.7.7
    08:44:32 [WARNING] [MYWARP] Help plugin not detected. Only providing help via /w
    arp help.
    08:44:32 [INFO] [MYWARP] MyWarp 2.0 enabled
    08:44:32 [INFO] [NightLand] loaded, will check:
    08:44:32 [INFO]
    
    08:44:32 [INFO] NoMovedTooQuicklyKick version 1.1 is enabled with permissions!
    08:44:32 [INFO] PermissionsBukkit v1.1 is now enabled
    08:44:32 [INFO] [Plugins_info] PLUGIN_INFO v1.01 is enabled! created by: Patrick
    _pk91
    08:44:33 [INFO] [Residence] - Setting Permissions 2.X compatability mode...
    08:44:33 [INFO] [Residence] Found Permissions Plugin!
    08:44:33 [INFO] [Residence] Successfully linked with iConomy!
    08:44:33 [INFO] [Residence] Loaded Residences...
    08:44:33 [INFO] [Residence] Enabled! Version 2.3.5 by bekvon
    08:44:33 [INFO] SecretDoors v0.2 by MrChick enabled
    08:44:33 [INFO] Vanilla version 0.1 is enabled!
    08:44:33 [INFO] WorldEdit 4.6 enabled.
    08:44:33 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin
     for permissions.
    08:44:33 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugi
    n for permissions.
    08:44:33 [INFO] WorldGuard: (mrvertigo27) Single session is enforced.
    08:44:33 [INFO] WorldGuard: (mrvertigo27) TNT ignition is PERMITTED.
    08:44:33 [INFO] WorldGuard: (mrvertigo27) Lighters are PERMITTED.
    08:44:33 [INFO] WorldGuard: (mrvertigo27) Lava fire is blocked.
    08:44:33 [INFO] WorldGuard: (mrvertigo27) Fire spread is UNRESTRICTED.
    08:44:33 [INFO] WorldGuard: Loaded configuration for world 'mrvertigo27"
    08:44:33 [INFO] WorldGuard: (mrvertigo27_nether) Single session is enforced.
    08:44:33 [INFO] WorldGuard: (mrvertigo27_nether) TNT ignition is PERMITTED.
    08:44:33 [INFO] WorldGuard: (mrvertigo27_nether) Lighters are PERMITTED.
    08:44:33 [INFO] WorldGuard: (mrvertigo27_nether) Lava fire is blocked.
    08:44:33 [INFO] WorldGuard: (mrvertigo27_nether) Fire spread is UNRESTRICTED.
    08:44:33 [INFO] WorldGuard: Loaded configuration for world 'mrvertigo27_nether"
    08:44:33 [INFO] WorldGuard 5.0-alpha10 enabled.
    08:44:33 [INFO] CommandHelper 70-fdf6a5c enabled
    08:44:33 [INFO] CommandHelper: Permissions plugin detected! Using Permissions pl
    ugin for permissions.
    08:44:34 [INFO] [CommandHelper]: 4 alias(es) defined.
    08:44:34 [INFO] [dynmap] Loading shaders...
    08:44:34 [INFO] [dynmap] Loaded 10 shaders.
    08:44:34 [INFO] [dynmap] Loading perspectives...
    08:44:34 [INFO] [dynmap] Loaded 54 perspectives.
    08:44:34 [INFO] [dynmap] Loading lightings...
    08:44:34 [INFO] [dynmap] Loaded 6 lightings.
    08:44:34 [INFO] [dynmap] Using environment as template: normal
    08:44:34 [INFO] [dynmap] Configuration of world mrvertigo27
    08:44:34 [INFO] [dynmap] center: org.dynmap.ConfigurationNode@7310b888
    08:44:34 [INFO] [dynmap] enabled: true
    08:44:34 [INFO] [dynmap] title: mrvertigo27
    08:44:34 [INFO] [dynmap] maps: [{class=org.dynmap.flat.FlatMap, name=flat, title
    =Flat, prefix=flat, colorscheme=default, textured=smooth}, {class=org.dynmap.kze
    dmap.KzedMap, renderers=[{class=org.dynmap.kzedmap.DefaultTileRenderer, name=sur
    face, title=Surface, prefix=t, maximumheight=127, colorscheme=default}, {class=o
    rg.dynmap.kzedmap.CaveTileRenderer, name=cave, title=Cave, prefix=ct, maximumhei
    ght=127}]}]
    08:44:34 [INFO] [dynmap] name: mrvertigo27
    08:44:34 [INFO] [dynmap] Loading maps of world 'mrvertigo27'...
    08:44:34 [INFO] [dynmap] Loading renderers for map 'class org.dynmap.kzedmap.Kze
    dMap'...
    08:44:34 [INFO] [dynmap] Loaded 2 renderers for map 'class org.dynmap.kzedmap.Kz
    edMap'.
    08:44:34 [INFO] [dynmap] Loaded 2 maps of world 'mrvertigo27'.
    08:44:34 [INFO] [dynmap] Using environment as template: nether
    08:44:34 [INFO] [dynmap] Configuration of world mrvertigo27_nether
    08:44:34 [INFO] [dynmap] center: org.dynmap.ConfigurationNode@27ff3a57
    08:44:34 [INFO] [dynmap] enabled: true
    08:44:34 [INFO] [dynmap] title: mrvertigo27_nether
    08:44:34 [INFO] [dynmap] maps: [{class=org.dynmap.flat.FlatMap, name=flat, title
    =Flat, prefix=flat, colorscheme=default, background=#300806, textured=smooth}, {
    class=org.dynmap.kzedmap.KzedMap, renderers=[{class=org.dynmap.kzedmap.DefaultTi
    leRenderer, name=nether, title=Surface, prefix=nt, maximumheight=127, colorschem
    e=default, background=#300806}]}]
    08:44:34 [INFO] [dynmap] name: mrvertigo27_nether
    08:44:34 [INFO] [dynmap] Loading maps of world 'mrvertigo27_nether'...
    08:44:34 [INFO] [dynmap] Loading renderers for map 'class org.dynmap.kzedmap.Kze
    dMap'...
    08:44:34 [INFO] [dynmap] Loaded 1 renderers for map 'class org.dynmap.kzedmap.Kz
    edMap'.
    08:44:34 [INFO] [dynmap] Loaded 2 maps of world 'mrvertigo27_nether'.
    08:44:34 [INFO] [dynmap] Web server is permitting symbolic links
    08:44:34 [INFO] [dynmap] Loaded 10 components.
    08:44:34 [INFO] [dynmap] Dynmap WebServer started on null:8123
    08:44:34 [INFO] [dynmap] version 0.20 is enabled
    08:44:34 [INFO] LWC: Loaded 135 locale strings (0 overrides)
    08:44:34 [INFO] Using Permissions API
    08:44:34 [INFO] LWC: Loading MySQL
    08:44:34 [INFO] LWC: Using: Mysql-connector-java-5.1.14 ( Revision: ${bzr.revisi
    on-id} )
    08:44:34 [INFO] LWC: Precached 70 protections.
    08:44:34 [INFO] LWC: At version: 3.30-git-LWC-94b93dd42195692ed1823346544359d591
    7274a2-b69jnks
    08:44:34 [INFO] [Administrate] - Permissions hooked using: Permissions v2.7.7
    08:44:34 [INFO] Reload complete.
    08:44:34 [WARNING] Can't keep up! Did the system time change, or is the server o
    verloaded?
    08:44:34 [INFO] ControllerBlock: Loaded v4 data - 10 ControllerBlocks loaded
    08:44:34 [WARNING] [CustomDifficulty] Difficulty not found for world mrvertigo27
    
    08:44:34 [INFO] [CustomDifficulty] Spawning deactivated for world mrvertigo27
    08:44:34 [WARNING] [CustomDifficulty] Difficulty not found for world mrvertigo27
    _nether
    08:44:34 [INFO] [CustomDifficulty] Spawning deactivated for world mrvertigo27_ne
    ther
    08:44:35 [INFO] [BBROTHER] Removed 53 records older than 1080h00m00s in 0h00m00s
    .
    08:44:49 [SEVERE] null
    org.bukkit.command.CommandException: Unhandled exception executing command 'res'
     in plugin Residence v2.3.5
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37)
            at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:12
    9)
            at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:3
    20)
            at net.minecraft.server.NetServerHandler.handleCommand(NetServerHandler.
    java:713)
            at net.minecraft.server.NetServerHandler.chat(NetServerHandler.java:677)
    
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:670)
            at net.minecraft.server.Packet3Chat.a(Packet3Chat.java:33)
            at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
            at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
            at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
            at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: java.lang.NullPointerException
            at com.bekvon.bukkit.residence.permissions.PermissionManager.getGroupNam
    eByPlayer(PermissionManager.java:102)
            at com.bekvon.bukkit.residence.permissions.PermissionManager.getGroupNam
    eByPlayer(PermissionManager.java:83)
            at com.bekvon.bukkit.residence.permissions.PermissionManager.getGroup(Pe
    rmissionManager.java:65)
            at com.bekvon.bukkit.residence.Residence.onCommand(Residence.java:561)
            at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
            ... 12 more
    >
    
    wondering if this is an issue with superperms/permbuckkit OR Residence?
     
  10. Offline

    CptSausage

    Oh noo -_- ok thanks. Already wondered why Permissions always answered with the help.
     
  11. Offline

    Jeffmcgee

    Code:
    # PermissionsBukkit configuration file
    #
    # A permission node is a string like 'permissions.build', usually starting
    # with the name of the plugin. Refer to a plugin's documentation for what
    # permissions it cares about. Each node should be followed by true to grant
    # that permission or false to revoke it, as in 'permissions.build: true'.
    # Some plugins provide permission nodes that map to a group of permissions -
    # for example, PermissionsBukkit has 'permissions.*', which automatically
    # grants all admin permissions. You can also specify false for permissions
    # of this type.
    #
    # Users inherit permissions from the groups they are a part of. If a user is
    # not specified here, or does not have a 'groups' node, they will be in the
    # group 'default'. Permissions for individual users may also be specified by
    # using a 'permissions' node with a list of permission nodes, which will
    # override their group permissions. World permissions may be assigned to
    # users with a 'worlds:' entry.
    #
    # Groups can be assigned to players and all their permissions will also be
    # assigned to those players. Groups can also inherit permissions from other
    # groups. Like user permissions, groups may override the permissions of their
    # parent group(s). Unlike users, groups do NOT automatically inherit from
    # default. World permissions may be assigned to groups with a 'worlds:' entry.
    #
    # The cannot-build message is configurable. If it is left blank, no message
    # will be displayed to the player if PermissionsBukkit prevents them from
    # building, digging, or interacting with a block. Use '&' characters to
    # signify color codes.
    
    users:
        jeffmcgee:
            permissions:
                permissions.example: true
            groups:
            - Admin
        Vegeta7141:
            permissions:
            groups:
            - Admin
    groups:
        default:
            permissions:
                essentials.list: true
                essentials.motd: true
                essentials.rules: true
                essentials.tpaccept: true
                mchat.prefix.Guest: true
                mchat.group.Guest: true
                mchat.suffix.Guest: true
                permissions.build: false
        Member:
            permissions:
                essentials.helpop: true
                essentials.help: true
                essentials.getpos: true
                essentials.afk: true
                essentials.list: true
                essentials.mail: true
                essentials.mail.send: true
                essentials.motd: true
                essentials.msg: true
                essentials.rules: true
                essentials.back.ondeath: true
                essentials.sethome: true
                essentials.tpa: true
                essentials.tpaccept: true
                essentials.tpdeny: true
                essentials.warp: true
                essentials.portal: true
                essentials.nocommandcost.all: true
                essentials.protect.damage.creeper: true
                essentials.protect.damage.drowning: true
                essentials.protect.damage.fall: true
                essentials.protect.damage.fire: true
                essentials.protect.damage.fireball: true
                essentials.protect.damage.lava: true
                essentials.protect.damage.lightning: true
                essentials.protect.damage.projectiles: true
                essentials.protect.damage.suffocation: true
                essentials.protect.damage.tnt: true
                essentials.protect.entitytarget.bypass: true
                essentials.signs.break.mail: true
                essentials.signs.create.mail: true
                essentials.signs.use.mail: true
                iConomy.rank: true
                iConomy.payment: true
                iConomy.list: true
                iConomy.bank.withdraw: true
                iConomy.access: true
                towny.town.new: true
                towny.town.claim: true
                towny.nation.new: true
                towny.wild.build: true
                towny.wild.destroy: true
                towny.wild.item_use: true
                towny.spawntp: true
                towny.publicspawntp: true
                mobarena.arenas.*: true
                mobarena.classes.Chef: true
                mobarena.classes.Pyro: true
                mobarena.classes.Tank: true
                mobarena.classes.Archer: true
                mobarena.use.join: true
                mobarena.use.leave: true
                mobarena.use.spectate: true
                mchat.prefix.Member: true
                mchat.group.Member: true
                mchat.suffix.Member: true
                mchat.channel.member: true
                permissions.build: true
        Trusted:
            permissions:
                essentials.me: true
                essentials.tpahere: true
                essentials.tptoggle: true
                essentials.warp.list: true
                essentials.signs.use.disposal: true
                towny.wild.*: true
                mobarena.classes.Knight: true
                mchat.prefix.Trusted: true
                mchat.group.Trusted: true
                mchat.suffix.Trusted: true
                mchat.prefix.Member: false
                mchat.group.Member: false
                mchat.suffix.Member: false
                mchat.channel.trusted: true
                mchat.channel.member: true
                permissions.build: true
            inheritance:
            - Member
        Moderator:
            permissions:
                essentials.helpop.receive: true
                essentials.ban: true
                essentials.broadcast: true
                essentials.ext: true
                essentials.invsee: true
                essentials.kick: true
                essentials.mute: true
                essentials.tempban: true
                essentials.unban: true
                essentials.setwarp: true
                essentials.top: true
                essentials.tphere: true
                essentials.tpo: true
                essentials.tpohere: true
                essentials.joinfullserver: true
                essentials.signs.break.disposal: true
                essentials.signs.create.disposal: true
                mobarena.admin.config.reload: true
                jail.command.jail: true
                jail.command.unjail: true
                jail.command.jailtransfer: true
                jail.command.jailcheck: true
                jail.command.jaillistcells: true
                setrank.rank: true
                mchat.prefix.Mod: true
                mchat.group.Mod: true
                mchat.suffix.Mod: true
                mchat.prefix.Trusted: false
                mchat.group.Trusted: false
                mchat.suffix.Trusted: false
                mchat.prefix.Member: false
                mchat.group.Member: false
                mchat.suffix.Member: false
                mchat.channel.mod: true
                permissions.build: true
            inheritance:
            - Trusted
        Veteran:
            permissions:
                essentials.jump: true
                essentials.tp: true
                mchat.prefix.Veteran: true
                mchat.group.Veteran: true
                mchat.suffix.Veteran: true
                mchat.prefix.Trusted: false
                mchat.group.Trusted: false
                mchat.suffix.Trusted: false
                mchat.prefix.Member: false
                mchat.group.Member: false
                mchat.suffix.Member: false
                mchat.channel.veteran: true
                permissions.build: true
            inheritance:
            - Trusted
        Donator:
            permissions:
                essentials.jump: true
                essentials.joinfullserver: true
                mchat.prefix.Trusted: false
                mchat.group.Trusted: false
                mchat.suffix.Trusted: false
                mchat.prefix.Member: false
                mchat.group.Member: false
                mchat.suffix.Member: false
                mchat.prefix.Donator: true
                mchat.group.Donator: true
                mchat.suffix.Donator: true
                mchat.channel.donator: true
                permissions.build: true
            inheritance:
            - Trusted
        Admin:
            permissions:
                permissions.*: true
                mchat.prefix.Admin: true
                mchat.group.Admin: true
                mchat.suffix.Admin: true
                mchat.prefix.Mod: false
                mchat.group.Mod: false
                mchat.suffix.Mod: false
                mchat.prefix.Donator: false
                mchat.group.Donator: false
                mchat.suffix.Donator: false
                mchat.prefix.Veteran: false
                mchat.group.Veteran: false
                mchat.suffix.Veteran: false
                mchat.prefix.Trusted: false
                mchat.group.Trusted: false
                mchat.suffix.Trusted: false
                mchat.prefix.Member: false
                mchat.group.Member: false
                mchat.suffix.Member: false
                mchat.prefix.Guest: false
                mchat.group.Guest: false
                mchat.suffix.Guest: false
                mchat.channel.admin: true
                mchat.channel.donator: true
                mchat.channel.veteran: true
                mchat.channel.trusted: true
                mchat.channel.member: true
                mchat.channel.mod: true
            inheritance:
        user:
            permissions:
                permissions.build: true
            group:
            worlds:
                creative:
                    coolplugin.item: true
            inheritance:
            - default
    
    messages:
        build: '&cYou do not have permission to build here.'
    

    i'm posting my entire permissionsbukkit config.yml file, because it still won't work for anyone except ops, and even ops only have the basic bukkit commands, that all ops get. if this is an issue with another plugin, i'd be thankful to be told, and any other help i'm thankful for as well.

    plugins: essentials, iconomy, jail, mobarena, mchat, permissionsbukkit, portalstick, setrank, towny, superpermsbridge.jar is included as well for portalstick.

    thanks for any and all help. i really need to get this sorted quickly so my server can get up and running.

    edit:
    after testing, towny and mobarena are working fine. setrank doesn't want to work either. jail brings nothing up ingame, i.e. no "unknown commands" message, but no confirmation message either. mchat is working okay for the admin class, haven't tested the rest yet. iconomy commands are working okay as well. just seems to be essentials. portalstick isn't working, but that's not a catastrophe at the moment.
     
  12. Offline

    Olof Larsson

    @drdanick and @SpaceManiac

    I found a bug. It is triggered once per player online when the server is restarting using McRKit.
    I am running RB1000 (heh obviously). And MCRKit [R10 a10.2]
    This is the MCRKit plugin: http://forums.bukkit.org/threads/ad...detection-auto-saves-remote-console-1000.674/


    Code:
    2011-07-23 18:40:09 [INFO] Forcing save..
    2011-07-23 18:40:09 [INFO] Save complete.
    2011-07-23 18:40:10 [INFO] [CONSOLE] **SERVER IS RESTARTING**
    2011-07-23 18:40:13 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
        at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:134)
        at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:104)
        at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
        at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
        at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:251)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:146)
        at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:117)
        at org.bukkit.craftbukkit.entity.CraftPlayer.kickPlayer(CraftPlayer.java:135)
        at com.drdanick.McRKit.plugin.RTKEventHandler.onCommand(RTKEventHandler.java:40)
        at com.drdanick.McRKit.plugin.RTKPlugin.onCommand(RTKPlugin.java:65)
        at org.bukkit.command.PluginCommand.execute(PluginCommand.java:35)
        at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:129)
        at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:312)
        at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:480)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:465)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-07-23 18:40:16 [INFO] Stopping the server..
     
  13. Offline

    sonicdashbob

    Hey guys, as much as I hate to be that guy that can't even figure out how to get his plugins to install, alas it is finally happening to me. I had updated my cb build (to 1000) and cleared all plugins from my plugins folder. I then uploaded the PermissionsBukkit and Superpermbridge plugins to the plugins folder, restarted my server, logged on, and couldn't use the commands for permissions.
    There was no trace of a PermissionsBukkit folder having generated with a config.yml file inside my plugins folder so I figured it must me an issue with PB not installing properly.I tried fixing the issue by re-installing, but it still would not work.
    I'm sure that the error is right in front of my eyes and I'm just not seeing the solution for some reason, so I'm sorry for probably what is an obvious question. Here's the error I'm getting in the server log. Thanks ahead of time for your help.

    Code:
    2011-07-23 11:21:41 [SEVERE] Could not load 'plugins\PermissionsBukkit-1.1.jar' in folder 'plugins':
    java.util.zip.ZipException: error in opening zip file
    	at java.util.zip.ZipFile.open(Native Method)
    	at java.util.zip.ZipFile.<init>(Unknown Source)
    	at java.util.jar.JarFile.<init>(Unknown Source)
    	at java.util.jar.JarFile.<init>(Unknown Source)
    	at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:60)
    	at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:207)
    	at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:130)
    	at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:128)
    	at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:97)
    	at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:51)
    	at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:132)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
     
  14. Offline

    gerarddude5100

    When i run permmisions bukkit it lets none build which is what I want for the default players but it won't let them thought doors how would I solve this problem
     
  15. Offline

    AloSec

    When using node

    'permissions.build: false'

    I can still build. No errors show in the console.
     
    runerqp likes this.
  16. Offline

    Celtic Minstrel

    @sonicdashbob – My first guess would be that your jar is corrupted; did you try redownloading?

    @SpaceManiac – Where's the Permissions 2.x/3.x converter? :(
     
  17. Offline

    MeinerHosen

    Here's my config for the PLAYER_QUIT problem in post #282.
    Show Spoiler
    Code:
    users:
        ConspiracyWizard:
            permissions:
                permissions.example: true
            groups:
            - admin
        meinerhosen:
            groups:
            - SuperAdmin
            permissions:
                '*': false
                superpermbridge.*: true
                war.*: true
                war.player: true
        pnukka:
            permissions:
            groups:
            - Member
        conabone:
            groups:
            - Monitor
        g301g3:
            permissions:
            groups:
            - Monitor
        john561213:
            groups:
            - Member
        sammeister97:
            groups:
            - Admin
        john:
            groups:
            - Member
        golfbob:
            groups:
            - Member
        chibi_author:
            groups:
            - Member
        pezinhos:
            groups:
            - Member
        admin:
            groups:
            - Banshee1543
        banshee1543:
            groups:
            - Admin
        wikawoo:
            groups:
            - Member
        jeimuzu:
            groups:
            - SuperAdmin
        mseri:
            groups:
            - Monitor
        tx_rtard_xt:
            groups:
            - Member
        legionxvx:
            groups:
            - member
        sekaicu:
            groups:
            - Member
    groups:
        Default:
            permissions:
                permissions.build: false
                essentials.suicide: true
                essentials.warp: true
                essentials.warplist: true
                essentials.list: true
                essentials.signs.heal.use: true
                essentials.signs.free.use: true
                essentials.help: true
                essentials.helpop: true
                essentials.rules: true
                essentials.motd: true
                essentials.spawn: true
                localshops.user.buy: true
                localshops.buysell: true
                wolfpound.use: true
                iConomy.payment: true
                iConomy.list: true
                HomeX.home: true
            worlds:
                Terraria:
                    server.terr.default: true
                Terraria_nether:
                    permissions.build: true
                Demacia:
                    permissions.build: false
        Member:
            permissions:
                SpawnX.spawn: true
                lockette.create.all: true
                lockette.user.create.*: true
                permissions.build: true
                server.terr.member: true
            worlds:
                Demacia:
                    permissions.build: false
                Terraria:
                    server.terr.member: true
                    permissions.build: true
                    HomeX.sethome: true
                    essentials.afk: true
                    essentials.chat.shout: true
                    essentials.home: true
                    essentials.kit: true
                    essentials.mail: true
                    essentials.mail.send: true
                    essentials.me: true
                    essentials.msg: true
                    essentials.sethome: true
                    essentials.signs.disposal.create: true
                    essentials.signs.disposal.use: true
                    essentials.signs.mail.create: true
                    essentials.signs.mail.use: true
                    essentials.signs.trade.use: true
                    essentials.tpaccept: true
                    essentials.tpdeny: true
                    essentials.warp.list: true
                    iConomy.rank: true
                    localshops.create: true
                    localshops.destroy: true
                    localshops.manage: true
                    localshops.manager.*: true
                    localshops.move: true
                    localshops.user.buy: true
                    localshops.user.sell: true
                    localshops.user.browse: true
                    lockette.user.create.*: true
                    mcbans.vote: true
                    mcmmo.ability.axes: true
                    mcmmo.ability.excavation: true
                    mcmmo.ability.mining: true
                    mcmmo.ability.swords: true
                    mcmmo.ability.unarmed: true
                    mcmmo.commands.ability: true
                    mcmmo.commands.party: true
                    mcmmo.commands.whois: true
                    mcmmo.skills.*: true
                    towny.nation.new: true
                    towny.town.claim: true
                    towny.town.new: true
                    towny.wild.block.*: true
                    towny.wild.build: true
                    towny.wild.destroy: true
                    towny.wild.item_use: true
                    towny.wild.switch: true
                    war.player: true
                    war.warp: true
                    wolfpound.use: true
            inheritance:
            - Default
        #AdvancedMember:
        #    permissions:
        #    worlds:
        #        Demacia:
        HonoredGuest:
            permissions:
                essentials.back.ondeath: true
                essentials.kit.tools: true
                essentials.compass: true
                essentials.signs.free.use: true
                essentials.signs.heal.use: true
                essentials.tpa: true
                essentials.tpahere: true
            inheritance:
            - member
        BronzeVIP:
            permissions:
                essentials.back.ondeath: true
                wolfpound.adopt: true
                essentials.kit.bronze: true
            inheritance:
            - member
        SilverVIP:
        GoldVIP:
            permissions:
                essentials.tpahere: true
                worldguard.god: true
                essentials.god: true
                essentials.kit.gold: true
            inheritance:
            - SilverVIP
        Monitor:
            permissions:
                permissions.build: true
                server.terr.monitor: true
            inheritance:
            - member
        Moderator:
            permissions:
                permissions.build: true
                server.terr.mod: true
            inheritance:
            - monitor
        Admin:
            permissions:
                permissions.build: true
                server.terr.admin: true
            inheritance:
            - moderator
        SuperAdmin:
            permissions:
                permissions.build: true
                server.terr.sa: true
            inheritance:
            - Admin
    messages:
        build: '&cYou do not have permission to build here.'
    


    And here's my permissions.yml

    Show Spoiler
    Code:
    server.terr.default:
        description: Default Permissions for Terraria.
        default: true
        children:
            permissions.build: false
            essentials.suicide: true
            essentials.warp: true
            essentials.warplist: true
            essentials.list: true
            essentials.signs.heal.use: true
            essentials.signs.free.use: true
            essentials.help: true
            essentials.helpop: true
            essentials.rules: true
            essentials.motd: true
            essentials.spawn: true
            localshops.user.buy: true
            localshops.buysell: true
            wolfpound.use: true
            iConomy.payment: true
            iConomy.list: true
            HomeX.home: true
            SpawnX.spawn: true
    server.terr.member:
        description: Member Permissions for Terraria.
        default: false
        children:
            permissions.build: true
            HomeX.sethome: true
            essentials.afk: true
            essentials.chat.shout: true
            essentials.home: true
            essentials.kit: true
            essentials.mail: true
            essentials.mail.send: true
            essentials.me: true
            essentials.msg: true
            essentials.sethome: true
            essentials.signs.disposal.create: true
            essentials.signs.disposal.use: true
            essentials.signs.mail.create: true
            essentials.signs.mail.use: true
            essentials.signs.trade.use: true
            essentials.tpaccept: true
            essentials.tpdeny: true
            essentials.warp.list: true
            iConomy.rank: true
            localshops.create: true
            localshops.destroy: true
            localshops.manage: true
            localshops.manager.*: true
            localshops.move: true
            localshops.user.buy: true
            localshops.user.sell: true
            localshops.user.browse: true
            lockette.user.create.*: true
            mcbans.vote: true
            mcmmo.ability.axes: true
            mcmmo.ability.excavation: true
            mcmmo.ability.mining: true
            mcmmo.ability.swords: true
            mcmmo.ability.unarmed: true
            mcmmo.commands.ability: true
            mcmmo.commands.party: true
            mcmmo.commands.whois: true
            mcmmo.skills.*: true
            permissions.build: true
            SpawnX.spawn: true
            towny.nation.new: true
            towny.town.claim: true
            towny.town.new: true
            towny.wild.block.*: true
            towny.wild.build: true
            towny.wild.destroy: true
            towny.wild.item_use: true
            towny.wild.switch: true
            war.player: true
            war.warp: true
            wolfpound.use: true
    server.terr.monitor:
        description: Monitor Permissions for Terraria.
        default: false
        children:
            essentials.back: true
            essentials.ext: true
            essentials.tp: true
            essentials.kick: true
            essentials.togglejail: true
            lockette.admin.snoop: true
            mcbans.ban.temp: true
            mcbans.kick: true
            permissions.player.setgroup: true
            permissions.help: true
            vanish.nopickup: true
            vanish.nopickup.list: true
            vanish.vanish: true
    server.terr.mod:
        description: Moderator Permissions for Terraria.
        default: false
        children:
            essentials.ban: true
            essentials.banip: true
            essentials.depth: true
            essentials.getpos: true
            essentials.jump: true
            essentials.kill: true
            essentials.top: true
            essentials.tphere: true
            essentials.whois: true
            essentials.tppos: true
            essentials.world: true
            essentials.teleport.cooldown.bypass: true
            essentials.teleport.timer.bypass: true
            essentials.god: true
            essentials.kit.mod: true
            lockette.admin.break: true
            lockette.admin.create.*: true
            mcbans.ban.global: true
            mcbans.ban.local: true
            mcbans.mod: true
            mcbans.lookup: true
            vanish.vanish.list: true
            vanish.dont.hide: true
            vanish.noaggromobs: true
            worldguard.god: true
            worldguard.region.list: true
            worldguard.region.info: true
            worldguard.redefine.own: true
            worldedit.navigation.up: true
            worldedit.navigation.down: true
    
    server.terr.admin:
        description: Admin permissions for Terraria.
        default: false
        children:
            essentials.clearinventory: true
            essentials.deljail: true
            essentials.heal: true
            essentials.heal.others: true
            essentials.invsee: true
            essentials.jails: true
            essentials.kickall: true
            essentials.kit.*: true
            essentials.mute: true
            essentials.setjail: true
            essentials.signs.protection.override: true
            essentials.burn: true
            localshops.admin: true
            localshops.*: true
            lockette.admin.reload: true
            mcbans.admin: true
            mcbans.ban.*: true
            mcbans.unban: true
            worldguard.*: true
    server.terr.sa:
        description: Super Admin permissions
        default: op
        children:
            superpermbridge.*: true
            permissions.*: true
            essentials: true
            fakemessage: true
            freeze: true
            mcmmo.*: true
            towny: true
            worldborder: true
            worldedit: true
            worldguard: true
            superpermbridge.*: true
     
  18. Hey,

    if I use the ingame command "/permissions player setgroup player group" will this change be saved in the config.yml?


    In my case, it doesn't work! As soon as I take a look in the config.yml, no new player name is mentioned! Am I doing something wrong?
    Moreover, I have a problem with the permissions of worldguard: My players can't use "/region define". If I take a look in the config, they are supposed to do so. The permission node I used is: worldguard.region.define.*: true.
    any suggestions?
     
  19. Offline

    MeinerHosen

    If you don't have superbridgeperms then I don't think the * permissions will work at all. You'll have to put all the permissions in individually. Might try to do /perm reload for the new player thing.
     
    wulfbear_joe likes this.
  20. Offline

    CrispyDiamonds

    im sorry but couldn't you have just designed it so we can use * nodes? Its a lot less confusing then this parent and child stuff
     
  21. Offline

    Celtic Minstrel

    Not entirely sure if this is how @SpaceManiac did it, but try this instead:
    Code:
    superpermbridge.worldguard.region.define
    And note that you need SuperpermsBridge in addition to PermissionsBukkit in order for that to work.

    It's only more confusing if the plugin author does something really odd. In fact, if plugin authors continue to use .* to imply something very similar to "everything under this node", then you don't really need to worry about the difference most of the time.
     
    wulfbear_joe likes this.
  22. Offline

    teeth

    <rant>
    This plugin appears to be pulling the big middle finger to the original devs to use this incomplete PermissionsBukkit system since #1000 which doesn't support MySQL or prefixes (/yet?) you need to add more plugins for that to work now... It's also inducing headaches to mc sys admins. Even more annoying it's not 'built in', its just another plugin like the rest with a bridge to emulate Permissions 3.x. I don't understand why people say this is a good thing? So what about the other developers projects now?
    </rant>
     
  23. Why would you want a permissions system that used an SQL database? How would you edit it outside of the game?
     
  24. Offline

    teeth

    It has already been done. I believe PEX uses the MySQL JDBC connecter already. Plus you have the power to create a web interface that easily taps into the permissions to make changes on your website.

    Plus MySQL databases by far, beat file based data storage methods as far as speed and performance goes.
     
  25. Offline

    IncendiaDrakon

    Please tell me I understand correctly. SuperpermsBridge will allow plugins written for Permssions 3 to work correctly with PermissionsBukkit? I can finally ditch the heaping pile of crap that Permissions has become?!

    One question though, this is the OFFICIAL bukkit permission plugin? When can we start seeing it on http://ci.bukkit.org/?
     
  26. Offline

    Paah

    The "superperms" system is built into Bukkit, and it is 100000x easier to use for plugin devs than any other system. Instead of hooking into dozen of different plugins you can just directly ask from craftbukkit if the player has permission. Server admin can define these permissions in the "permissions.yml" file at server root. However this system is very basic. It doesn't have groups, per-world permissions, ingame permission editing..
    This is where "PermissionsBukkit" comes in. It adds that fuctionality.
    No one is saying you have to use PermissionsBukkit, but so far it is the ONLY permissions plugin that expands the superperms system. Anyone who thinks they can do it better, make your permissions plugin and release it.
     
    RustyDagger likes this.
  27. Offline

    EdGruberman

    Code:
    2011-07-24 05:47:25 [SEVERE] Could not pass event PLAYER_QUIT to PermissionsBukkit
    java.lang.IllegalArgumentException: Attachment cannot be null
    	at org.bukkit.permissions.PermissibleBase.removeAttachment(PermissibleBase.java:134)
    	at org.bukkit.craftbukkit.entity.CraftHumanEntity.removeAttachment(CraftHumanEntity.java:104)
    	at com.platymuus.bukkit.permissions.PermissionsPlugin.unregisterPlayer(PermissionsPlugin.java:137)
    	at com.platymuus.bukkit.permissions.PlayerListener.onPlayerQuit(PlayerListener.java:24)
    	at org.bukkit.plugin.java.JavaPluginLoader$2.execute(JavaPluginLoader.java:251)
    	at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    	at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
    	at net.minecraft.server.ServerConfigurationManager.disconnect(ServerConfigurationManager.java:146)
    	at net.minecraft.server.NetServerHandler.disconnect(NetServerHandler.java:117)
    	at net.minecraft.server.ConsoleCommandHandler.handle(ConsoleCommandHandler.java:125)
    	at org.bukkit.craftbukkit.CraftServer.dispatchCommand(CraftServer.java:315)
    	at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:480)
    	at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:465)
    	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
    	at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
     
  28. Two comments here. First, you do realize that SQL databases are files right? Second, how are (normal) people without a website (like a private server) supposed to edit the database?
     
  29. Offline

    Catlover341

    How do you change the permissions for /giving?
    I want one of my groups to be able to use /give.
     
  30. Offline

    runerqp

    i have a short, and newb question. But its freaking me out.

    I placed both files, superpermsbridge and permissionsbukkit, in plugins folder, i restarted server 1000 times, but i still doesnt show any folder, .yml, nothing. Please help me ;)

    <Edit>

    Wow nvm, i fixed it. Now i have a question.
    Where it says, "worlds:" i have to change creative, for the name of my map?
     
  31. Offline

    Paah

    With MySQL workbench?
     

Share This Page