No known Permissions plugin detected after install

Discussion in 'Bukkit Help' started by Vaupell, Feb 6, 2011.

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

    Vaupell

    Hi guys.

    Trying to learn bukkit server setup.
    So until i got things sorted im installing and testing on localhost.

    Ive installed a few things now
    - Permissions
    - Worldedit
    - Ichat
    - General
    - Antibuild

    But when i launch the server i get read that it does not load the plugins,
    and when going ingame to test, none is "active"

    Im launching server with this .bat (Windows)
    Code:
    @echo off
    "%ProgramFiles(x86)%\Java\jre6\bin\java.exe" -Xms1024M -Xmx1024M -jar craftbukkit.jar
    pause
    
    I think or suspect the main issue is the "permissions"
    Aparently im missing to enable it or something i just cant see..

    My plugins/permissions/config.yml
    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: true
            info:
                prefix:
                suffix:
                build: - false
            inheritance:
            permissions:
                - 'general.spawn'
        Member:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
        Moderator:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Default, Member
            permissions:
                - 'general.time'
                - 'general.teleport'
                - 'general.teleport.here'
                - 'general.player-info'
        Admins:
            default: false
            info:
                prefix: '&4'
                suffix: '&c'
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    ##
    ##
    users:
        Eqvaliser:
            group: Admins
            permissions:
                - 'general.time'
        Vaupell:
            group: Member
            permissions:
                - 'general.time'
    
    A screenshot of server promt where it seems not to load permissions
    permissions.GIF

    LOG :
    Code:
    
    2011-02-06 11:42:44 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-333-g2fe5517-b256 (MC: 1.2_01)
    2011-02-06 11:42:44 [INFO] Preparing level "world"
    2011-02-06 11:42:44 [INFO] Preparing start region
    2011-02-06 11:42:45 [INFO] Preparing spawn area: 32%
    2011-02-06 11:42:46 [INFO] Preparing spawn area: 60%
    2011-02-06 11:42:47 [INFO] [AntiBuild] version [1.0] (Reborn) loaded
    2011-02-06 11:42:47 [INFO] [iChat] version [1.5] (Maria Holic) loaded
    2011-02-06 11:42:47 [INFO] WorldEdit 3.2.2 loaded.
    2011-02-06 11:42:47 [INFO] WorldEdit: No known permissions plugin detected. Using configuration file for permissions.
    2011-02-06 11:42:47 [INFO] [AntiBuild] Permission system not enabled. Disabling plugin.
    2011-02-06 11:42:47 [INFO] [AntiBuild] version [1.0] (Reborn) disabled
    2011-02-06 11:42:47 [INFO] [iChat] Permission system not enabled. Disabling plugin.
    2011-02-06 11:42:47 [INFO] [iChat] version [1.5] (Maria Holic) disabled
    2011-02-06 11:42:47 [INFO] Done! For help, type "help" or "?"
    Any advice ?
     
  2. Offline

    Lewis

    Code:
    groups:
        Default:
            default: true
            info:
                prefix:
                suffix:
                build: - false

    See that bit, take out the dash (-) before the false, that should allow the file to rest properly. No other errors in that code though :]
     
  3. Offline

    Vaupell

    Thank you.. Now everything appears to work as intended..

    Except "General.jar" but i removed it, and get no errors now..
    Cheers..
     
Thread Status:
Not open for further replies.

Share This Page