Permissions ex Setup

Discussion in 'Bukkit Help' started by goakiller900, Dec 4, 2011.

Thread Status:
Not open for further replies.
  1. Can sombody help me in with this server set up ?

    it checks out in a parser for Yaml

    sometimes it works sometimes its not working of right now it aint working at all
    and why is the server putting null behind options on this config file ?? it just places randomly Null for example options or inheritance even when there are options to be activated

    Code:
    groups:
        banned:
            permissions:
            - god.all
            - modifyworld.*
            inheritance: null
            options: null
            prefix: '&0(&0 Banned &0) &f'
        Guest:
            default: true
            permissions:
            - god.all
            - modifyworld.*
            options: null
            prefix: '&0(&7 Guest &0)&f'
        Builder:
            permissions:
            - god.all
            - modifyworld.*
            inheritance:
            - Guest
            options: null
            prefix: '&0(&a Builder &0) &f'
        AdvBuilder:
            permissions:
            - god.all
            - modifyworld.*
            inheritance:
            - Builder
            options: null
            prefix: '&0(&2 AdvBuilder &0) &f'
        Survivor:
            permissions:
            - lwc.blockinventory
            - groupspawn.spawn
            inheritance:
            - Guest
            options: null
            prefix: '&0(&b Survivor&0) &f'
        AdvSurvivor:
            permissions:
            - god.all
            - modifyworld.*
            inheritance:
            - Survivor
            options: null
            prefix: '&0(&3 AdvSurvivor&0) &f'
        Donator:
            permissions:
            - god.all
            - modifyworld.*
            inheritance:
            - Advsurvivor
            - AdvBuilder
            options: null
            prefix: '&0(&6 Donator &0) &f'
        Semiadmin:
            permissions:
            - god.all
            - modifyworld.*
            inheritance:
            - Dontator
            options: null
            prefix: '&0(&1 SemiAdmin &0) &f'
        Admin:
            permissions:
            - '*'
            - modifyworld.*
            inheritance:
            - Semiadmin
            options: null
            prefix: '&0(&4 Admin &0) &f'
        Host:
            permissions:
            - '*'
            - modifyworld.*
            - chatmanager.chat.global
            options: null
            prefix: '&0(&4 Host &0) &f'
    users:
        goakiller900:
            group:
            - Admin
    
     
  2. Offline

    nala3

    Code:
    groups:
        banned:
            permissions:
            - god.all
            - modifyworld.chat
    #that is probably better so they cant break anything :3
            inheritance:
            options:
                prefix: '&a[G]&7'
                Rank: '900'
        Guest:
            default: true
            permissions:
            - god.all
            - modifyworld.*
            options:
                prefix: '&a[G]&7'
                Rank: '850'
        Builder:
            permissions:
            inheritance:
            - Guest
            options:
                prefix: '&a[G]&7'
                Rank: '800'
            prefix: '&0(&8B&7uidler&0)&7 '
        AdvBuilder:
            permissions:
            inheritance:
            - Builder
            options:
                prefix: '&a[G]&7'
                Rank: '700'
            prefix: '&0(&8adv&7Builder&0)&7 '
        Survivor:
            permissions:
            - lwc.blockinventory
            - groupspawn.spawn
            inheritance:
            - Guest
            options:
                prefix: '&f[GUEST]&7'
                Rank: '600'
        AdvSurvivor:
            permissions:
            - god.all
            inheritance:
            - Survivor
            options:
                prefix: '&a[G]&7'
                Rank: '500'
        Donator:
            permissions:
            inheritance:
            - Advsurvivor
            - AdvBuilder
            options:
                prefix: '&a[G]&7'
                Rank: '400'
        Semiadmin:
            permissions:
            inheritance:
            - Dontator
            options:
                prefix: '&a[Semiadmin]&7'
                Rank: '300'
        Admin:
            permissions:
            - "*"
            options:
                preffix: '&8[Admin]&7'
                Rank: '200'
        Host:
            permissions:
            - "*"
            options:
            prefix: '&0(&4Host&0)&c'
            Rank: '100'
    
    try that.

    Oh and it places Null because the inheritance is null.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 22, 2016
  3. the permissions are not standard i know this is just getting the damn thing to work in the first place permissions are something we would call a stage 2 event (what i just started thx to you btw :p)


    btw am i forced to use modifyworld thing of theirs ?? cause iam afraid it could colide with worldguard or something ??
     
  4. Offline

    nala3

    no, infact by default it is not enabled. And no it will not conflict with worldguard, it is like the old permissions systems "build: true" or "build: false" option. except more fine grained if you want it to be.
     
  5. Offline

    LeDjawesome_o

    I don't want to use those specific ranks can i change them without it messing up the entire system.
     
Thread Status:
Not open for further replies.

Share This Page