Solved Error message in console

Discussion in 'Bukkit Help' started by wen372, Jun 15, 2012.

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

    wen372

    I was working on the commands for groupmanager and this showed up when i opened server, i dont know how to fix it please help
     
  2. Offline

    ImminentFate

    What you've done is formatted the file incorrectly. Remember, tabs cannot be used, and spacing is very important. make sure that everything you have typed is formatted exactly as the examples that come with groupmanager are formatted
     
  3. Offline

    wen372

    should i post my file to show it?

    # Group inheritance
    # any inherited groups prefixed with a g: are global groups
    # These groups are defined in the globalgroups.yml
    # and can be inherited in any worlds groups/users.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and defined in the this groups.yml file.
    groups:
    Default:
    default: true
    permissions:
    - essentials.help
    - essentials.afk
    - essentials.tpa
    - essentials.back
    - essentials.sethome
    - essentials.delhome
    - essentials.clearinventory
    - essentials.warp
    - essentials.home
    - essentials.kit
    - essentials.list
    - essentials.mail
    - essentials.motd
    - essentials.me
    - essentials.msg
    - essentials.near
    - essentials.pay
    - essentials.r
    - essentials.rules
    - essentials.suicide
    - essentials.tpaccept
    - essentials.tpdny
    - essentials.warp
    - essentials.helpop
    - essentials.seen
    - factions.help
    - factions.list
    - factions.show
    - factions.join
    - factions.leave
    - factions.chat
    - factions.home
    - factions.create
    - factions.desc
    - factions.tag
    - factions.open
    - factions.invite
    - factions.deinvite
    - factions.sethome
    - factions.claim
    - factions.autoclaim
    - factions.unclaimall
    - factions.kick
    - factions.mod
    - factions.admin
    - factions.title
    - factions.map
    - factions.owner
    - factions.ownerlist
    - factions.disban
    - factions.ally
    - factions.neutral
    - factions.enemy
    inheritance: []
    info:
    prefix: '&e[&8Default&e]'
    build: true
    suffix: ''
    Builder:
    default: false
    permissions:
    - essentials.nick
    - essentials.jails
    - essentials.realname
    inheritance:
    - Defult
    info:
    prefix: '&e[&2Builder&e]'
    build: true
    suffix: ''
    Vip:
    default: false
    permissions:
    - essentials.bigtree
    - essentials.tp
    - essentials.god
    inheritance:
    Builder
    info:
    prefix: '&0[&eVIP&0]'
    build: true
    suffix: ''
    Moderator:
    default: false
    permissions:
    - essentials.broadcast
    - essentials.ban
    - essentials.banip
    - essentials.kick
    - essentials.whois
    - essentials.gamemode
    - essentials.kill
    - essentials.bigtree
    - essentials.break
    - essentials.ext
    - essentials.compass
    - essentials.getpos
    - essentials.ignore
    - essentials.invsee
    - essentials.mute
    - essentials.setjail
    - essentials.setwarp
    - essentials.delwarp
    - essentials.deljail
    - essentials.socialspy
    - essentials.sudo
    - essentials.top
    - essentials.tppos
    - essentials.unban
    - essentials.unbanip
    - essentials.weather
    - factions.bypass
    - factions.claim safezone
    - factions.claim warzone
    - factions.safeunclaimall
    - factions.warunclaimall
    - factions.peaceful
    - factions.chatspy
    - factions.saveall
    - factions.lock
    - factions.reload
    inheritance:
    - VIP
    info:
    prefix: '&e[&bModerator&e]'
    build: true
    suffix: ''
    Admin:
    default: false
    permissions:
    - '*'
    inheritance:
    - moderator
    info:
    prefix: '&e[&5Admin&e]'
    build: true
    suffix: ''
    Owner:
    default: false
    permissions:
    - '*'
    inheritance:
    - admin
    info:
    prefix: '&e[&4Owner&e]'
    build: true
    suffix: ''


    i made sure not to put any tabs

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 26, 2016
  4. Offline

    ImminentFate

    can you put that into a code block? That way i can see the correct formatting. (the icon with the two {} and a hashtag"#")
     
  5. Offline

    wen372

    Code:
    # Group inheritance
    # any inherited groups prefixed with a g: are global groups
    # These groups are defined in the globalgroups.yml
    # and can be inherited in any worlds groups/users.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and defined in the this groups.yml file.
    groups:
      Default:
        default: true
        permissions:
        - essentials.help
        - essentials.afk
        - essentials.tpa
        - essentials.back
        - essentials.sethome
        - essentials.delhome
        - essentials.clearinventory
        - essentials.warp
        - essentials.home
        - essentials.kit
        - essentials.list
        - essentials.mail
        - essentials.motd
        - essentials.me
        - essentials.msg
        - essentials.near
        - essentials.pay
        - essentials.r
        - essentials.rules
        - essentials.suicide
        - essentials.tpaccept
        - essentials.tpdny
        - essentials.warp
        - essentials.helpop
        - essentials.seen
        - factions.help
        - factions.list
        - factions.show
        - factions.join
        - factions.leave
        - factions.chat
        - factions.home
        - factions.create
        - factions.desc
        - factions.tag
        - factions.open
        - factions.invite
        - factions.deinvite
        - factions.sethome
        - factions.claim
        - factions.autoclaim
        - factions.unclaimall
        - factions.kick
        - factions.mod
        - factions.admin
        - factions.title
        - factions.map
        - factions.owner
        - factions.ownerlist
        - factions.disban
        - factions.ally
        - factions.neutral
        - factions.enemy
        inheritance: []
        info:
          prefix: '&e[&8Default&e]'
          build: true
          suffix: ''
      Builder:
        default: false
        permissions:
        - essentials.nick
        - essentials.jails
        - essentials.realname
        inheritance:
        - Defult
        info:
          prefix: '&e[&2Builder&e]'
          build: true
          suffix: ''
      Vip:
        default: false
        permissions:
        - essentials.bigtree
        - essentials.tp
        - essentials.god
        inheritance:
        Builder
        info:
          prefix: '&0[&eVIP&0]'
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions:
        - essentials.broadcast
        - essentials.ban
        - essentials.banip
        - essentials.kick
        - essentials.whois
        - essentials.gamemode
        - essentials.kill
        - essentials.bigtree
        - essentials.break
        - essentials.ext
        - essentials.compass
        - essentials.getpos
        - essentials.ignore
        - essentials.invsee
        - essentials.mute
        - essentials.setjail
        - essentials.setwarp
        - essentials.delwarp
        - essentials.deljail
        - essentials.socialspy
        - essentials.sudo
        - essentials.top
        - essentials.tppos
        - essentials.unban
        - essentials.unbanip
        - essentials.weather
        - factions.bypass
        - factions.claim safezone
        - factions.claim warzone
        - factions.safeunclaimall
        - factions.warunclaimall
        - factions.peaceful
        - factions.chatspy
        - factions.saveall
        - factions.lock
        - factions.reload
        inheritance:
        - VIP
        info:
          prefix: '&e[&bModerator&e]'
          build: true
          suffix: ''
      Admin:
        default: false
        permissions:
        - '*'
        inheritance:
        - moderator
        info:
          prefix: '&e[&5Admin&e]'
          build: true
          suffix: ''
      Owner:
        default: false
        permissions:
        - '*'
        inheritance:
        - admin
        info:
          prefix: '&e[&4Owner&e]'
          build: true
          suffix: ''
     
  6. Offline

    ImminentFate

    alright, the error is at line 89:
    That's the section where you have the builder group. You forgot to put the ":" after the name
     
  7. Offline

    wen372

    i dont see it sorry can you copy that section?
     
  8. Offline

    ImminentFate

    PHP:
    Vip:
        default: 
    false
        permissions
    :
        - 
    essentials.bigtree
        
    essentials.tp
        
    essentials.god
        inheritance
    :
        
    Builder
        info
    :
          
    prefix'&0[&eVIP&0]'
          
    buildtrue
          suffix
    ''
    Sorry, I meant where you have Builder, it should be
    - Builder
     
  9. Offline

    wen372

    oh Thanks! that solved the error, how can i change the prefix to solved?
     
  10. Offline

    ImminentFate

    go back to the bukkit help section, and find your post (It will be at the top) Hover over it and it will show an edit text option. Then click on "prefix" and select solved
     
Thread Status:
Not open for further replies.

Share This Page