Niji's Permission Plugin Help :/

Discussion in 'Bukkit Help' started by Aceryan321, Feb 8, 2011.

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

    Aceryan321

    I have been trying to get a bukkit server running for a while now (I think bukkit hates me) and i have finally done it. Now, I have gone to install Niji's Permissions plugin and it runs fine, apart from the commands :/ I have made groups and specified users. I have spell checked it myself 3 times, and got my friends to do it twice. I can't find a mistake anywhere, so can somebody make the config for me?
    I want the groups: Admin, Mod, Default.
    And I want the users: Aceryan321 (Admin) Enforcer11 (Mod) Kinglego11 (Mod)

    Can I also have a printable version of all the commands available and their nodes (I think that's the name :/)

    Thank you!
    --- merged: Feb 8, 2011 8:06 PM ---
    Do we bump here?
    --- merged: Feb 8, 2011 10:08 PM ---
    Bump?
     
  2. Offline

    Kev

    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: true
            inheritance:
            permissions:
        Mod:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
        Admin:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Mod
            permissions:
                - '*'
    
    ##
    # DarkGrave has control over all general commands.
    # sk89q can use /spawn & /setspawn
    ##
    users:
        Aceryan321:
            group: Admin
            permissions:
        Enforcer11:
            group: Mod
            permissions:
        Kinglego11:
            group: Mod
            permissions:
    No, you can't have a list of availaible commands. You need to get the commands from your plugins topics.
     
  3. Offline

    Aceryan321

    But doesn't Niji's plugin come with it's own commands? I can't find the list of them :/

    And thanks for the script :D
     
  4. Offline

    Kev

    Nope it doesn't come with commands. The general.spawn is only there to show how to write the command correctly. If you want general.spawn to work you will need to download the plugin General.
     
  5. Offline

    oki123

    The only command that I know of is /pr. It just reloads the permissions in-game :D
    And the 'nodes' come with each plugin (if they offer support with Niji's permissions)
     
  6. Offline

    Kev

    Yeah, you can add this command with permissions.reload
     
Thread Status:
Not open for further replies.

Share This Page