Inactive [ADMN/INFO] Permissions v2.1 - Continuing the legacy.

Discussion in 'Inactive/Unsupported Plugins' started by Nijikokun, Jan 21, 2011.

Thread Status:
Not open for further replies.
  1. Offline

    Nijikokun

    Permissions 2.1 (Handler)
    Download 2.1 (Jar Only)
    Older: 2.0, 1.9, 1.8, 1.7, 1.6, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0

    Permissions... Done right.
    Permissions allows plugin-authors to utalize a permission system that handles group inheritance, globalized permission settings, and more. All the features of a fine-grained permission system in one plugin.​

    Features
    1. Groups
    2. Group Inheritance, Allows for groups to gain permissions from other groups.
    3. User Permission System
    4. Fine Grained Permission system.
      1. Allowing for Globalized permissions
    5. Easy to use, setup, and implement.
    6. Two cache layers, first from file to memory, then from memory to cache.
      1. Plugins can control cache since version 2.1
    7. And much more.
    For the users


    Permissions gives server admins great control, mostly in-game reloading. Simply use /pr and the file will be re-cached and never touched again until you need to reload it. This allows you to quickly give your users the commands that they need without having to restart the server.

    Installation for 2.0 down:
    1. Download the archive.
    2. Extract contents to the /plugins folder.
    3. Open up /plugins/Permissions/config.yml
      1. Read / modify.
      2. Save.
    4. Reload Server.
    Changelog

    • 2.1
      • Multiple-World support
      • New cache layer, and cache control support for plugins
      • Editing features for plugins to hook into
      • Exempt nodes
      • World copying
    • 2.0
      • Forgot.
    • 1.9
      • Fully fixes inheritance.
        • Groups now inherit groups of groups that inherit groups of...
      • Cache system implemented.
      • Plugin authors can now delegate a variable system if needed.
      • API Updated with two new functions to get the point of what they do across.
        • Along with the new variable checks.
    • 1.8
      • Fixes the broken globalized node issue.
        • node.* is called a `globalized node`
    Supporting Plugins




    I have hit the character limit for this post.​

    Thanks to:
    • sk89q for hiearchical and node system idea.
    • Creator of GroupUsers for api implementation.
    This author has stopped development of this plugin. It is no longer supported and I wouldn't ask for help here, as you won't get any. New Permissions
    -RightLegRed
     
  2. Offline

    Joman

  3. Offline

    Zerco

    Your Moderator group is inheriting a group that doesn't exist, it looks like it needs to inherit "- NoPermissions" rather than "- Default". It also looks like the "NoPermissions" group is spaced improperly and needs to be brought back roughly two spaces. You also need to remove "- 'general.spawn' " from the Moderator group, it inherits this permission from the NoPermissions group. You're not inheriting NoPermissions properly in the User group, it needs to look like:
    Code:
       User:
           default: false
           inheritance:
               - NoPermissions,
            permissions:
               - 'general.items'
    
     
  4. Offline

    ShadowDrakken

    @Joman your Moderator is trying to inherit the group Default which you removed, and you have none of the groups default: true (only one should be)

    not seeing any other immediate problems, but I'm still looking
     
  5. Offline

    Hypo2010

    are the Links to download broken or i is only me ?
     
  6. Offline

    ShadowDrakken

    oops, my bad, there's the default: true... yeah the indentation is a problem

    I think someone posted a mirror link a page or two back... Nijikokun's server died, he's busy rebuilding it and restoring the backup

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

    Zerco

    This works just fine for me:
    http://alfenia.com/mirror/Permissions/2.1/Permissions.zip
    If that doesn't work here's a mediafire link:
    <Edit by Moderator: Redacted mediafire url>
     
    Last edited by a moderator: Dec 15, 2016
  8. Offline

    Syphon

    Hey guys,

    Trying to get all these implemented in rebooting a server I originally hosted before Bukkit.

    Converting over seems pretty straight forward, although I've hit a snag (I think). Hopefully I'm not asking anything ridiculously stupid, and I've tried to google/search for similar issues. Anyway, here goes.

    I'm not entirely sure what the cause is, but I'm joining a server I'm hosting and am the only person currently on it.

    With permissions installed, I can use the commands like an administrator should be able to, but don't have any prefix or suffix that would otherwise show that I am; I'm not sure whether I've made a mistake and allowed everyone to have administrator access (thereby giving me access that way, not by making myself an admin correctly), or whether I've set it up correctly, it's just the prefix and suffixes that aren't working correctly.

    I'd much prefer that was the case, and everything else is fine. I'll post the code and hopefully someone can point me in the right direction.

    Thanks for any help and apologies for being bad at computers! Good job on the plugins too :)

    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   Does not work for the default world.
    plugin:
        permissions:
            system: default
            copies:
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another 
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example: 
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-general.time'
    ##
    groups:
        Default:
            default: true
            inheritance: 
            permissions:
               - 'general.spawn'
        Moderator:
            default: false
            inheritance:
               - Default
            permissions:
               - 'general.time'
               - 'general.teleport'
               - 'general.teleport.here'
               - 'general.player-info'
               - 'general.items'
        Admin:
            default: false
            info:
                prefix: '&c[Admin]'
                suffix: '&f'
                build: true
            inheritance:
            permissions:
                - '*'
    
    
    ##
    # DarkGrave has control over all commands.
    # sk89q can use /spawn & /time
    ##
    users:
        abb:
            group: Moderator
            permissions:
        abc:
            group: Moderator
            permissions:
        abd:
            group: Moderator
            permissions:
        dotadei:
            group: Admins
            permissions:
    
    The server spits this out:

    --------

    23:15:49 [INFO] Starting minecraft server version Beta 1.3
    23:15:49 [WARNING] **** NOT ENOUGH RAM!
    23:15:49 [WARNING] To start the server with more ram, launch it as "java -Xmx102
    4M -Xms1024M -jar minecraft_server.jar"
    23:15:49 [INFO] Loading properties
    23:15:49 [INFO] Starting Minecraft server on *:25565
    23:15:49 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-468-
    ga3bf56c-b450jnks (MC: 1.3)
    23:15:49 [INFO] Preparing level "world1"
    23:15:49 [INFO] Preparing start region
    23:15:50 [SEVERE] Could not load plugins\General.jar in plugins: null
    org.bukkit.plugin.InvalidPluginException
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:80)
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.
    java:129)
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager
    .java:94)
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:59)
    at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NoSuchMethodException: com.nijikokun.bukkit.General.General
    .<init>()
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.getConstructor(Unknown Source)
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:75)
    ... 8 more
    23:15:50 [INFO] [Permissions] version [2.1] (Handler) was Initialized.
    23:15:50 [INFO] [Permissions] version [2.1] (Handler) loaded
    23:15:50 [INFO] Done (0.087s)! For help, type "help" or "?"
    23:16:03 [INFO] 143 recipes
    23:16:03 [INFO] DotaDei [/127.0.0.1:57461] logged in with entity id 66
    23:16:05 [INFO] <DotaDei> hi
    23:16:08 [INFO] <DotaDei> one
    23:16:12 [INFO] DotaDei lost connection: disconnect.quitting
    >


    Yes, I've also failed at setting up General, how and why I guess I'll trial and error myself before posting elsewhere.

    Any help on this would be great :D

    Thanks guys!
     
  9. Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   Does not work for the default world.
    plugin:
        permissions:
            system: default
            copies:
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-general.time'
    ##
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix:
                build: true
            inheritance:
            permissions:
                - 'general.spawn'
                - 'iConomy.payment'
                - 'iConomy.list'
                - 'iConomy.rank'
        Admin:
            default: false
            info:
                prefix:&1Admin
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
                - 'general.time'
                - 'general.teleport'
                - 'general.teleport.here'
                - 'general.player-info'
                - 'worldedit.*'
        Owner:
            default: false
            info:
                prefix:&eOwner
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
    #USERS
    
    users:
        spydaniel:
            group: Owner
            permissions:
     
  10. Offline

    Hypo2010

    I cant use any commands as admin with permissions 2.1 why? It alway say You have no permission to that command!
    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   Does not work for the default world.
    plugin:
        permissions:
            system: default
            copies: Hell, Hell2, World2
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-general.time'
    ##
    groups:
    
      Default:
    
        Default: true
    
        info:
           prefix: '&f'
           suffix: '&f'
           build: true
    
        inheritance:
    
        permissions:
           - 'mywarp.warp.sign.warp'
           - 'myhome.home.basic.*'
    
           - 'essentials.spawn'
           - 'essentials.tpaccept'
           - 'essentials.tpdeny'
           - 'essentials.list'
           - 'essentials.whois'
           - 'essentials.help'
           - 'essentials.motd'
           - 'essentials.afk'
           - 'essentials.rules'
           - 'essentials.realname'
           - 'essentials.mail'
           - 'essentials.mail.send'
           - '/stats'
           - '/ach
    '
      Advanced:
    
        Default: false
    
        info:
             prefix: '&6[VIP]&f'
             suffix: '&6'
             build: true
    
        inheritance:
             - Default
    
        permissions:
             - 'myhome.home.soc.*'
             - 'iConomy.payment'
             - 'iConomy.rank'
             - 'iConomy.list'
             - 'simpleshop.buy'
             - 'essentials.tptoggle'
             - 'simpleshop.sell'
             - 'mywarp.warp.*'
             - 'essentials.nick'
             - 'essentials.tpahere'
             - 'essentials.tpa'
             - 'essentials.helpop'
             - 'essentials.getpos'
             - 'essentials.compass'
             - 'essentials.me'
             - 'lwc.protect'
      Moderator:
    
        Default: false
    
        info:
            prefix: '&b[Mod]&f'
            suffix: '&b'
            build: true
    
        inheritance:
            - Advanced
        permissions:
            - 'myhome.admin'
            - 'iConomy.withdraw'
            - 'iConomy.deposit'
            - 'simpleshop.items.*'
            - 'mywarp.admin'
            - 'lwc.mod'
            - 'essentials.tpo'
            - 'essentials.tpohere'
            - 'essentials.kick'
            - 'essentials.ban'
            - 'essentials.unban'
            - 'essentials.heal'
            - 'essentials.time'
            - 'essentials.top'
            - '/achadmin'
            - '/statsadmin'
      Admins:
    
        Default: false
    
        info:
             prefix: '&2[Admin]&f'
             suffix: '&4'
             build: true
    
        inheritance:
             - Moderator
    
        permissions:
    
             - '*'
    
    users:
    
      Hypo2010:
    
        group: Admins
    
        permissions:
      Lucas14:
    
        group: Moderator
    
        permissions:
    
      Powercookie:
    
        group: Moderator
    
        permissions:
      Hannes:
    
        group: Advanced
        permissions:
      flitzer:
        group: Advanced
        permissions:
      Peetzn:
        group: Advanced
        permissions:
      CarlyChickpea:
        group: Advanced
        permisions:
      Samy10:
        group: Advanced
        permissions:
      Jiaro:
        group: Advanced
        permissions:
      Kohle:
        group: Advanced
        permisions:
    thats my config of permissions
    pls help
     
  11. Offline

    Zerco

    Try changing your name to the correct capitalization, it's extremely picky and most programs see 'A' and 'a' differently as well as other letters. So change "dotadei" to "DotaDei" other than that it looks formatted properly and your spacing seems good. Also please add
    Code:
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix:
                build: false
            inheritance:
            permissions:
               - 'general.spawn'
        Moderator:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
               - Default
            permissions:
               - 'general.time'
               - 'general.teleport'
               - 'general.teleport.here'
               - 'general.player-info'
               - 'general.items'
        Admin:
            default: false
            info:
                prefix: '&c[Admin]'
                suffix: '&f'
                build: true
            inheritance:
            permissions:
                - '*'
    
    You forgot the info: groupings for Default and Moderator, that may have a negative effect.
    Edit: Take the 's' off of "Admins" where you've set your personal permissions, you specified "Admin" in the above groups, not "Admins"
    Edit2: I'm getting off of work I'll check the rest when I make it home.
     
  12. Offline

    Joman

  13. Offline

    ShadowDrakken

    @SpyDaniel
    I think the prefixes need a space after the colon and possibly single quotes since they're string values... I'm not actually sure on that one because I don't use that portion myself.

    @Syphon
    Hrm, I'm not sure why it's not prefixing, or if prefixing even works tbh...
     
  14. Offline

    Syphon

    Ah thankyou.

    The whole reason I made it smaller was somewhere in one of the 94 pages someone had said not to capitalise (I think!).

    Damn, trying to read everything has done me in haha.

    Will do, and will try now.


    Edit:

    Code:
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix: 
                build: false
            inheritance: 
            permissions:
               - 'general.spawn'
        Moderator:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
               - Default
            permissions:
               - 'general.time'
               - 'general.teleport'
               - 'general.teleport.here'
               - 'general.player-info'
               - 'general.items'
        Admin:
            default: false
            info:
                prefix: '&c[Admin]'
                suffix: '&f'
                build: true
            inheritance:
            permissions:
                - '*'
    
    
    ##
    # DarkGrave has control over all commands.
    # sk89q can use /spawn & /time
    ##
    users:
        abb:
            group: Moderator
            permissions:
        abc:
            group: Moderator
            permissions:
        abd:
            group: Moderator
            permissions:
        DotaDei:
            group: Admins
            permissions:
    

    I still see nothing in the way of a prefix or a suffix.

    No colour change (not that I believe it's stipulated) or anything. I've previously set the server up using hMod and had different colours and prefixes (e.g DotaDei purely in red) working fine.

    Any other suggestions?

    Much appreciated.
     
  15. Offline

    Jandalf

    config.yml renamedto DEFAULTWORLDNAME.yml? no tabs, only spaces? and no error in the console?
     
  16. Offline

    ShadowDrakken

    your NoPermissions and User are both indented too far and your Moderator is still trying to inherit a group that doesn't exist
     
  17. Offline

    cjc343

    That version of General is known to currently not work. Your problem, however, is likely that you need to put in the config file yourself.

    Permissions does not use the prefix and suffix, just provides them (You need other plugins to put them into place in chat). Test by reloading with lower permission and making sure you're blocked.
     
  18. Offline

    ShadowDrakken

  19. Offline

    cjc343

    copies: Hell, Hell2, World2

    Make 3 (more) files, Hell.yml Hell2.yml ...

    in them, put copies: World

    done!

    E: And you've got a single quote that jumped to a newline
     
  20. Offline

    Zerco

    Code:
    prefix: '&1Admin'
    prefix: '&eOwner'
    
    You forgot the two " ' " around your prefixes, this applies to suffixes as well.
     
  21. Offline

    Takeo91

    Info: The files are uploaded again.
    Thank you
     
  22. Offline

    Syphon

    Ok so I gather that everything is fixed now and the problem lies with additional plugin support/ not having prefix/suffix support for permissions to actually use.

    Great, thanks.

    I gather that's an issue with things like General that I haven't setup (I've seen the chat support feature with colour etc) so I'll get on fixing that next. Cheers.
     
  23. Code:
    2011-02-26 05:09:34 [SEVERE] Could not load plugins/iChat.jar in plugins: null
    org.bukkit.plugin.InvalidPluginException
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:80)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:129)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:94)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:59)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NoSuchMethodException: com.nijikokun.bukkit.iChat.iChat.<init>()
        at java.lang.Class.getConstructor0(Class.java:2724)
        at java.lang.Class.getConstructor(Class.java:1675)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:75)
        ... 8 more
    2011-02-26 05:09:34 [INFO] [Permissions] version [2.1] (Handler) was Initialized.
    2011-02-26 05:09:34 [SEVERE] Could not load plugins/Minequery.jar in plugins: null
    org.bukkit.plugin.InvalidPluginException
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:80)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:129)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:94)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:59)
        at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:204)
        at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:191)
        at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:131)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:246)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:366)
    Caused by: java.lang.NoSuchMethodException: net.minestatus.minequery.Minequery.<init>()
        at java.lang.Class.getConstructor0(Class.java:2724)
        at java.lang.Class.getConstructor(Class.java:1675)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:75)
        ... 8 more
    Its still broke, iChat and Permissions both do not load.
     
  24. Offline

    ShadowDrakken

    where's the Permissions error?
     
  25. Offline

    Hypo2010

    Doesn't work

    In my Default world (Hotel) i cant use any commands same for the 3 other worlds
    Mybe because I use Permiussions 2.1 now before in 2.0 all commands work but the Inheritance doesn't work.
     
  26. Offline

    cjc343

    Several people have rebuilt or forked iChat. The old plugin does not currently work afaik.

    Minequery appears to also be broken. (At least the build you're using. Have you checked for a newer version yet?)

    Permissions loaded fine (as ShadowDrakken said/implied)

    You would replace where I put World with Hotel then (of course). Beyond that, did you catch the single quote I mentioned?

    Try this:

    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   Does not work for the default world.
    plugin:
        permissions:
            system: default
            copies:
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-general.time'
    ##
    groups:
      Default:
        Default: true
        info:
           prefix: '&f'
           suffix: '&f'
           build: true
        inheritance:
        permissions:
           - 'mywarp.warp.sign.warp'
           - 'myhome.home.basic.*'
           - 'essentials.spawn'
           - 'essentials.tpaccept'
           - 'essentials.tpdeny'
           - 'essentials.list'
           - 'essentials.whois'
           - 'essentials.help'
           - 'essentials.motd'
           - 'essentials.afk'
           - 'essentials.rules'
           - 'essentials.realname'
           - 'essentials.mail'
           - 'essentials.mail.send'
           - '/stats'
           - '/ach'
      Advanced:
        Default: false
        info:
             prefix: '&6[VIP]&f'
             suffix: '&6'
             build: true
        inheritance:
             - Default
        permissions:
             - 'myhome.home.soc.*'
             - 'iConomy.payment'
             - 'iConomy.rank'
             - 'iConomy.list'
             - 'simpleshop.buy'
             - 'essentials.tptoggle'
             - 'simpleshop.sell'
             - 'mywarp.warp.*'
             - 'essentials.nick'
             - 'essentials.tpahere'
             - 'essentials.tpa'
             - 'essentials.helpop'
             - 'essentials.getpos'
             - 'essentials.compass'
             - 'essentials.me'
             - 'lwc.protect'
      Moderator:
        Default: false
        info:
            prefix: '&b[Mod]&f'
            suffix: '&b'
            build: true
        inheritance:
            - Advanced
        permissions:
            - 'myhome.admin'
            - 'iConomy.withdraw'
            - 'iConomy.deposit'
            - 'simpleshop.items.*'
            - 'mywarp.admin'
            - 'lwc.mod'
            - 'essentials.tpo'
            - 'essentials.tpohere'
            - 'essentials.kick'
            - 'essentials.ban'
            - 'essentials.unban'
            - 'essentials.heal'
            - 'essentials.time'
            - 'essentials.top'
            - '/achadmin'
            - '/statsadmin'
      Admins:
        Default: false
        info:
             prefix: '&2[Admin]&f'
             suffix: '&4'
             build: true
        inheritance:
        permissions:
             - '*'
    users:
      Hypo2010:
        group: Admins
        permissions:
      Lucas14:
        group: Moderator
        permissions:
      Powercookie:
        group: Moderator
        permissions:
      Hannes:
        group: Advanced
        permissions:
      flitzer:
        group: Advanced
        permissions:
      Peetzn:
        group: Advanced
        permissions:
      CarlyChickpea:
        group: Advanced
        permisions:
      Samy10:
        group: Advanced
        permissions:
      Jiaro:
        group: Advanced
        permissions:
      Kohle:
        group: Advanced
        permisions:
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 18, 2016
  27. Offline

    Joman

  28. Offline

    cjc343

    I think first we need to know the name of your world, and the name of your "config.yml"
     
  29. Offline

    Hypo2010

    hmm It doesn't work
    My Hotel.yml http://pastebin.com/arsnCbvH
    so and the three other ymls are all the same text
    Code:
    plugin:
        permissions:
            system: default
            copies: Hotel
     
  30. Offline

    ShadowDrakken

    hrm... should be default :true/false rather than Default: true/false, but I'm not sure if that's what's causing the error
     
  31. Offline

    cjc343

    Also, do not bother inheriting anything in Admin. I'd say link me to the errors you get/your startup now but I'm actually going to fall asleep instead.
     
Thread Status:
Not open for further replies.

Share This Page