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

    chill1977

    what's with all the spacing problems? lol i'll work on it, you used tabs didnt you? you cannot use tabs
     
  3. Offline

    ShadowFile

    Thanks for pointing that out chill... apparently it did tab instead of space or something... I'll change it and see if it works
     
  4. Offline

    chill1977

    Code:
    # Supports "Default" and "GroupUsers"
    plugin:
        permissions:
            system: GroupUsers
    
    ##
    # Groups can contain inheritance.
    #  To make a group inherit the permissions from another
    #  group simply place the groups name in the "inheritance:"
    #  field seperated by commas.
    #
    #  Example: inheritance: Default,Admins,
    ##
    #  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:
    #
    #      - '*'
    ##
    groups:
        Prisoner:
            default: false
            info:
                prefix: '&0Prisoner '
                suffix: '&0'
                build: false
            inheritance:
            permissions:
        Peasant:
            default: true
            info:
                prefix: '&fPeasant '
                suffix:
                build: true
            inheritance:
            permissions:
                - 'general.spawn'
                - 'general.player-info'
        Citizen:
            default: false
            info:
                prefix: '&9Civilian '
                suffix:
                build:
            inheritence:
              -Peasant
            permissions:
              - 'lwc.protect'
              - 'simplewarp.warp'
              - 'myhome.home.basic.*'
        Moderator:
            default: false
            info:
                prefix: '&1Aristocrat '
                suffix:
                build: true
            inheritance:
                - Citizen
            permissions:
                - 'general.teleport'
                - 'general.teleport.here'
                - 'general.items'
                - 'cleaner.preview'
                - 'cleaner.preview.restore'
                - 'cleaner.replace.*'
                - 'lwc.mod'
                - 'worldguard.stopfire'
                - 'simplewarp'
                - 'myhome.*'
                - 'muter.muter.playername'
        Admins:
            default: false
            info:
                prefix: '&2The Great '
                suffix:
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all commands.
    # sk89q can use /spawn & /time
    ##
    users:
        shadowfile:
            group: Admins
            permissions:
        notnats:
            group: Admins
            permissions:
     
  5. Offline

    ShadowFile

    Thanks for helpin me out chill [​IMG]
     
  6. Offline

    Kevlawliet

    Code:
    # Supports "Default" and "GroupUsers"
    plugin:
        permissions:
            system: default
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:"
    #   field seperated by commas.
    #
    #   Example: inheritance: Default,Admins,
    ##
    #   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:
    #
    #       - '*'
    ##
    groups:
        Guest:
            default: true
            info:
                prefix: Guest
                suffix:
                build: false
            inheritance:
            permissions:
                - 'essentials.spawn'
        Moderator:
            default: false
            info:
                prefix: Moderator
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
                - 'essentials.tp'
                - 'essentials.tphere'
                - 'essentials.list'
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.helpop'
                - 'essentials.getpos'
                - 'essentials.whois'
                - 'essentials.spawn'
                - 'essentials.setspawn'
                - 'essentials.top'
                - 'essentials.time'
                - 'essentials.help'
                - 'essentials.motd'
                - 'essentials.kick'
                - 'essentials.ban'
                - 'essentials.unban'
                - 'essentials.banip'
                - 'essentials.unbanip'
                - 'essentials.afk'
                - 'essentials.rules'
                - 'essentials.msg'
                - 'essentials.ping'
        Admins:
            default: false
            info:
                prefix: Admins
                suffix:
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all commands.
    # sk89q can use /spawn & /time
    ##
    users:
        kevlawliet:
            group: Moderator
            permissions:
        chilong:
            group: Moderator
            permissions:
        komuro:
            group: Moderator
            permissions:  

    Hello. I have problems each time I type commands it shows out errors on console. And permission, I am trying to restrict my mods from using items. But they can still use it. Like for example I want to restrict everyone except me, from using command /item from Essentials. Maybe somethings wrong with the config or something else. Anyways, LWC also displays something. This happens when i log in to my server with Authorize.


    SEVERE: Could not pass event PLAYER_COMMAND to LWC
    java.lang.NullPointerException
    at com.nijiko.permissions.Control.getInheritancePermissions(Control.java
    :321)
    at com.nijiko.permissions.Control.permission(Control.java:190)
    at com.griefcraft.listeners.LWCPlayerListener.onPlayerCommand(LWCPlayerL
    istener.java:52)
    at org.bukkit.plugin.java.JavaPluginLoader.callEvent(JavaPluginLoader.ja
    va:135)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.j
    ava:201)
    at net.minecraft.server.NetServerHandler.c(NetServerHandler.java:547)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:523)
    at net.minecraft.server.Packet3Chat.a(SourceFile:24)
    at net.minecraft.server.NetworkManager.a(SourceFile:232)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:65)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:104)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:261)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:197)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:512)
     
  7. Offline

    ShadowFile

    Not 100% sure if this'll fix it but try getting rid of the spare lines
    Here:
    system:
    Code:
            system: default
    
    ##

    and here:
    Code:
              - '*'
    
    ##
     
  8. Offline

    chill1977

    @Kevlawliet your mods should not be able to use /item from essentials with that config, however what other plugins are you running, maybe one of those offers an /item option as well. we need more information i believe.
     
  9. Offline

    Kevlawliet

    Thank you for your help but, they can still use it >.<

    Chill1977 : Um, All the plugins i have are : Authorize, BigBrother, Essentials, LWC, WorldEdit, WorldGuard, Permissions.
     
  10. Offline

    Arisilde

    WorldEdit has the /items command too.
     
  11. Offline

    OhHaiTea

    Heyyy, so I have Essentials. And I set up all my groups and users. I wanted to make it so Defaults couldnt use "i" or "give" but everything I do doesnt seem to work. Help plox? Thanks!

    Plugins: AntiBreak, LWC, HomeLite, Essentials, DynMap, Permissions
     
  12. Offline

    Kevlawliet

    Then what do i do?
     
  13. Offline

    Arisilde

    Go into your plugins\worldedit folder and edit the files to disable the /item command
     
  14. Offline

    EvilMaL

    Hello i'm havin a big problem on my lil server. nobody can use any commands but me and i'm totally lost as to what is wrong in my code. So if you don't mind can someone please look at my code and help me fix it :) i greatly appreciate any feedback. thanks for your time.

    *Edit. - I got the name thing to work out. when peeps login and chat it says there vip, mod, or what ever i set them to but they can not use any commands.. not even /help

    Code:
    # Supports "Default" and "GroupUsers"
    plugin:
        permissions:
            system: default
    ##
    # Groups can contain inheritance.
    #  To make a group inherit the permissions from another
    #  group simply place the groups name in the "inheritance:"
    #  field seperated by commas.
    #
    #  Example: inheritance: Default,Admins,
    ##
    #  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:
    #
    #      - '*'
    ##
    groups:
        Guest:
            default: true
            info:
                prefix: 'Guest'
                suffix:
                build: true
            inheritance:
            permissions:
                - 'essentials.spawn'
                - 'essentials.help'
                - 'eseentials.list'
                - 'essentials.accept'
                - 'essentials.getpos'
                - 'essentials.kit.guest'
                - 'essentials.kit.food'
                - 'essentials.kit.wtools'
                - 'essentials.motd'
                - 'essentials.afk'
                - 'essentials.rules'
        Member:
            default: false
            info:
                prefix: '&eMember'
                suffix: '&e'
                build: true
            inheritance:
                - Guest
            permissions:
                - 'essentials.home'
                - 'essentials.sethome'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.msg'
                - 'essentials.compass'
                - 'essentials.kit.wood'
                - 'essentials.kit.stone'
                - 'essentials.kit.sand'
                - 'essentials.kit.glass'
                - 'essentials.kit.carm'
                - 'essentials.kit.stools'
                - 'hiddendoors.hd.c'
                - 'hiddendoors.hd.d'
                - 'hiddendoors.hd.l'
                - 'hiddendoors.hd.h'
        Mod:
            default: false
            info:
                prefix: '&3Mod'
                suffix: '&3'
                build: true
            inheritance:
                - Member
            permissions:
                - 'essentials.kill'
                - 'essentials.warp'
                - 'essentials.setwarp'
                - 'essentials.tp'
                - 'essentials.kit.iarm'
                - 'essentials.kit.itools'
        Vip:
            default: false
            info:
                prefix: '&dVip'
                suffix: '&d'
                build: true
            inheritance:
                - Mod
            permissions:
                - 'essentials.kit.garm'
                - 'essentials.kit.gtools'
                - 'essentials.tpchere'
                - 'essentials.tpc'
                - 'essentials.tphere'
                - 'essentials.clearinventory'
                - 'essentials.nick'
                - 'essentials.whois'
                - 'essentials.setspawn'
                - 'essentials.heal'
                - 'essentials.realname'
                - 'sortal.sortal.warp'
        Admins:
            default: false
            info:
                prefix: '&6Admin'
                suffix: '&6'
                build: true
            inheritance:
                - Vip
            permissions:
                - '*'
    ##
    # evilmal has control over all commands.
    # y_m_10590 is a Vip
    ##
    users:
        evilmaL:
            group: Admins
            permissions:
        y_m_10590:
            group: Vip
            permissions:
        lillion:
            group: Mod
            permissions:
        greatwhiteghost:
            group: Member
            permissions:
    
                
     
  15. Offline

    Lordarking

  16. Offline

    chill1977

    to start with you have 2 plugins providing spawn options which are probably not getting along

    Any command must be enclosed in 'Admin' and there must be a space after any - or :
    --- merged: Jan 27, 2011 7:27 AM ---
    Code:
    # Supports "Default" and "GroupUsers"
    plugin:
        permissions:
            system: default
    
    ##
    # Groups can contain inheritance.
    #  To make a group inherit the permissions from another
    #  group simply place the groups name in the "inheritance:"
    #  field seperated by commas.
    #
    #  Example: inheritance: Default,Admins,
    ##
    #  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:
    #
    #      - '*'
    ##
    groups:
        Default:
            default: false
            info:
                prefix: 'User'
                suffix:
                build: false
            inheritance:
            permissions:
                - 'general.spawn'
        New users:
            default: true
            info:
                prefix: 'new user'
                suffix:
                build: true
            inheritance:
            permissions:
                - 'SpawnControl.sethome.basic'
                - 'SpawnControl.sethome.proxy'
                - 'SpawnControl.home.basic'
        Moderator:
            default: false
            info:
                prefix: 'Moderator'
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
        Admins:
            default: false
            info:
                prefix: 'Admin'
                suffix:
                build: true
            inheritance:
            permissions:
                - '*'
    users:
        Lordarking:
            group: Moderator
            permissions:
                - '*'
        other users:
            group: New users
            permissions:
            - 'general.spawn'
    This should work unless your plugins are arguing, don't be redundant as well, once you put '*' there is no need for more commands to be listed.
     
  17. Offline

    EvilMaL

    anyone on that can help with the problem i posted real quick ? i got cookies and milk i can email you :)
     
  18. Offline

    chill1977

    sry give me just a second to ee what the deal is lol
     
  19. Offline

    EvilMaL

    I appreciate it very much Chill1977, cookies are on the way
     
  20. Offline

    chill1977

    I see no problem with the code, you say you can use the commands but noone else can?

    What versions are you running and are you running any other plugins, because they should be able to use some commands anyway
     
  21. Offline

    EvilMaL

    im usein the newest version and i also have these plugins installed,

    essentials, hiddendoor, ichat, sortal, and superheat.

    its weird cause when they talk it shows them as lets say [Vip] or [Mod]

    oh i forgot to say that yes im the only one who can use commands
     
  22. Offline

    chill1977

    if you can use a command that they should be able to then it's not an issue with craftbukkit or compatibility i dont guess, hmmmm i'm hoping you dleted the disabled commands in your essentials config file
    --- merged: Jan 27, 2011 8:38 AM ---
    thats the only other thing i can see that might stop them from using commands, other than that i guess i'm finally stumped for the day lol
     
  23. Offline

    EvilMaL

    this is my essensials code and only thing disabled in it is nick

    Code:
    # A color code between 0-9 or a-f. Set to 'none' to disable.
    ops-name-color: 'g'
    
    # The character(s) to prefix all nicknames, so that you know they are not true usernames.
    nickname-prefix: '~'
    
    # The delay, in seconds, required between /home, /tp, /warp, etc.
    teleport-cooldown: 60
    
    # The delay, in seconds, required between /heal attempts
    heal-cooldown: 60
    
    # The number of items given if the quantity parameter is left out in /item or /give.
    default-stack-size: 64
    
    # The message of the day, displayed on connect and by typing /motd.
    motd:
      - '&2Welcome to our server, &a{PLAYER}'
      - '&bPlease do not addon to peoples creations without permission.'
      - 'Type /rules to see our server rules.'
      - '&4No Warning Shots Fired on this Server'
      - '&cGriefers are killed, booted, then perma ip ban.'
      - 'This server is brought to you by &6EvilMaL &fand &eY_M_10590'
    
    # The server rules, available by typing /rules
    rules:
      - '1 Be respectful'
      - '2 No abusive comments'
      - '3 Use common sense'
      - '4 If it isnt yours then dont touch it!'
    # Disabled commands will be completelly unavailable on the server.
    disabled-commands:
     - nick
    
    # Restricted commands will only be available to ops.
    # These will have NO EFFECT if you have Permissions installed!
    # These are here only if you want something simpler than Permissions.
    restricted-commands:
     
    # Note: All items MUST be followed by a quantity!
    # Times are measured in seconds.
    kits:
      guest:
        delay: 3600
        items:
        - 268 1
        - 269 1
        - 270 1
        - 271 1
      wood:
        delay: 3600
        items:
        - 17 20
        - 5  20
        - 280 20
      stone:
        delay: 3600
        items:
        - 4 64
        - 4 64
      Sand:
        delay: 3600
        items:
        - 12 64
        - 12 64
      glass:
        delay: 3600
        items:
        - 20 64
        - 20 64
      food:
        delay: 3600
        items:
        - 320 1
        - 260 1
        - 282 1
        - 350 1
        - 297 1
      larm:
        delay: 14400
        items:
        - 268 1
        - 298 1
        - 299 1
        - 300 1
        - 301 1
      carm:
        delay: 14400
        items:
        - 272 1
        - 302 1
        - 303 1
        - 304 1
        - 305 1
      iarm:
        delay: 14400
        items:
        - 267 1
        - 306 1
        - 307 1
        - 308 1
        - 309 1
      garm:
        delay: 14400
        items:
        - 283 1
        - 314 1
        - 315 1
        - 316 1
        - 317 1
      darm:
        delay: 14400
        items:
        - 276 1
        - 136 1
        - 137 1
        - 138 1
        - 139 1
      wtools:
        delay: 7200
        items:
        - 269 1
        - 270 1
        - 271 1
        - 290 1
      stools:
        delay: 7200
        items:
        - 273 1
        - 274 1
        - 275 1
        - 291 1
      itools:
        delay: 7200
        items:
        - 256 1
        - 257 1
        - 258 1
        - 292 1
      gtools:
        delay: 7200
        items:
        - 284 1
        - 285 1
        - 286 1
        - 294 1
      dtools:
        delay: 7200
        items:
        - 277 1
        - 278 1
        - 279 1
        - 293 1
    # End of File
     
  24. Offline

    chill1977

    you say you are using ichat and you have color set with permissions then set the color in the essentials to none, but that doesnt really help your problem--- merged: Jan 27, 2011 8:50 AM ---
    i see in a post of the sortal site that it broke the permissions, you might want to uninstall that and try it then but i know it doesnt work with permissions, that would be my final answer
     
  25. Offline

    EvilMaL

    ok thank you for your time Chill1977 i really appreciate it :) im gonna uninstall sortal and see if it works :)
     
  26. Offline

    chill1977

    np and sry i couldnt figure it out, you get the cookies, been doing this all day and this is the first i couldnt get right, i would bet it's one of those plugins lol
     
  27. Offline

    EvilMaL

    its cool now all commands are working except kits now LOL i fix one thing and break another :p
     
  28. Offline

    chill1977

    lol so what got the other stuff working?
     
  29. Offline

    EvilMaL

    i redownloaded all plugins and craftbukkit. but now kits are broken. and im getting cobblestone spam for days LOL
     
  30. Offline

    Littlericket

    I'm gettin this Error:
    Code:
    27.01.2011 09:01:41 org.bukkit.plugin.SimplePluginManager loadPlugins
    CRITICAL: Could not load plugins\Permissions.jar in plugins: null
    org.bukkit.plugin.InvalidPluginException
            at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:83)
            at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.
    java:117)
            at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager
    .java:82)
            at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:43)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:153)
            at net.minecraft.server.MinecraftServer.c(MinecraftServer.java:140)
            at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:104)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:177)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:512)
    Caused by: java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    
            at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    
            at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Sou
    rce)
            at java.lang.reflect.Constructor.newInstance(Unknown Source)
            at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.j
    ava:81)
            ... 8 more
    Caused by: while scanning a simple key
     in "<reader>", line 32, column 1:
        '
        ^
    could not found expected ':'
     in "<reader>", line 33, column 16:
                    - '            - ''
                       ^
    
            at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(Scanne
    rImpl.java:400)
            at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.jav
    a:231)
            at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:18
    2)
            at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockSequenceEntry.produce(
    ParserImpl.java:510)
            at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
            at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
            at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.jav
    a:203)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:158)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java
    :230)
            at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
            at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:12
    2)
            at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
    
            at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseCons
    tructor.java:124)
            at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
            at org.bukkit.util.config.Configuration.load(Configuration.java:62)
            at org.bukkit.plugin.java.JavaPlugin.<init>(JavaPlugin.java:46)
            at com.nijikokun.bukkit.Permissions.Permissions.<init>(Permissions.java:
    76)
            ... 13 more
    Can someone help me ? I'm running the newest Premissions and b158 of Bukkit.

    Thanks
     
  31. Offline

    imoro

    Hi, I movec the jar file in my plugins dir and edited the yml file, started the server, following error:
    The Server starts but without permissions. :/
    Could someone help me?
     
Thread Status:
Not open for further replies.

Share This Page