Essentials kits.

Discussion in 'Bukkit Help' started by noseynose03, Mar 23, 2014.

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

    noseynose03

    Ok...First of my kits wont work. I have the permission essentials.kit.pvp & essentials.kit.starter in the default group for group mang. When I have A default do /kit or /ekit or /kits, It says "there are no kits available yet."
    My kit part of the config. (essentials):
    Code:
    kits:
      tools:
        delay: 86400
        items:
          - 272 1
          - 273 1
          - 274 1
          - 275 1
      Pvp:
        delay: 1800
        items:
          - 306 1
          - 307 1
          - 308 1
          - 309 1
          - 267 1
      Starter:
        delay: 86400
        items:
          - 257 1 name:Starter Pick
          - 256 1 name:Starter Shovel
          - 258 1 name:Starter Axe
          - 267 1 name:Starter Sword
      color:
        delay: 6000
        items:
          - 387 1 title:&4Book_&9o_&6Colors author:KHobbits lore:Ingame_color_codes book:Colors
      firework:
        delay: 6000
        items:
          - 401 1 name:Angry_Creeper color:red fade:green type:creeper power:1
          - 401 1 name:StarryNight color:yellow,orange fade:blue type:star effect:trail,twinkle power:1
          - 401 2 name:SolarWind color:yellow,orange fade:red shape:large effect:twinkle color:yellow,orange fade:red shape:ball effect:trail color:red,purple fade:pink shape:star effect:trail power:1


    I also put -kit in the override command around line 91.
    I also tried adding perms in game.
     
  2. Offline

    worpolax

    Did you do
    - essentials.kits.pvp
    and all the other ones you want for the permissions.yml file in the permissinsEX folder in your plugins?
    Did you do
    - essentials.kits.pvp
    and all the other ones you want for the permissions.yml file in the permissinsEX folder in your plugins?
     
  3. Offline

    Sycholic

    your kits.yml file looks fine ran it thru a yml parser so no problems there.
    so likely... it is likely a permissions issue.


    Instructions: In the config.yml you can create predefined kits, and configure the delay between uses.
    Used without a kit name will list the available kits.
    Permissions:
    essentials.kit Allow access to the /kit command.
    essentials.kits.[kitname] Give access to a single kit, where [kitname] is the name of an existing kit.
    essentials.kits.* Allows access to all created kits
    essentials.kit.others Allows spawning of kits on other players.
    essentials.kit.exemptdelay Exempts you from the kit delay feature, this affects signs as well as command.

    http://wiki.ess3.net/wiki/Command_Reference

    what permssions plugin you using? drop the perms file into pastebin if you can? then we can look at that...
     
  4. Offline

    Power_Horse0_0

    This should work for the essentials kits.
    Code:
      tools:
        delay: 86400
        items:
        - 272 1
        - 273 1
        - 274 1
        - 275 1
      Pvp:
        delay: 1800
        items:
        - 306 1
        - 307 1
        - 308 1
        - 309 1
        - 267 1
      Starter1:
        delay: 86400
        items:
        - 257 1 name:Starter Pick
        - 256 1 name:Starter Shovel
        - 258 1 name:Starter Axe
        - 267 1 name:Starter Sword
      color:
        delay: 6000
        items:
        - 387 1 title:&4Book_&9o_&6Colors author:KHobbits lore:Ingame_color_codes book:Colors
      firework:
        delay: 6000
        items:
        - 401 1 name:Angry_Creeper color:red fade:green type:creeper power:1
        - 401 1 name:StarryNight color:yellow,orange fade:blue type:star effect:trail,twinkle power:1
        - 401 2 name:SolarWind color:yellow,orange fade:red shape:large effect:twinkle color:yellow,orange fade:red shape:ball effect:trail color:red,purple fade:pink shape:star effect:trail power:1
    And the permission should be like this
    Essentials.kits.(Kit name)
     
  5. Offline

    noseynose03

    I am using group manager. If I put commands in the yml, they don't end to work.(some do) and I already put in the nodes.
     
  6. Offline

    kungfuko

    pastebin your groupmanger groups config

    Just a reminder: # All kit names should be lower case, and will be treated as lower in permissions/costs.
     
  7. Offline

    noseynose03

    Heres My groups, But I told you that I do it in-game.

    Code:
    # Group inheritance
    #
    # Any inherited groups prefixed with a g: are global groups
    # and are inherited from the GlobalGroups.yml.
    #
    # Groups without the g: prefix are groups local to this world
    # and are defined in the this groups.yml file.
    #
    # Local group inheritances define your promotion tree when using 'manpromote/mandemote'
     
    groups:
      Default:
        default: true
        permissions:
        - -bukkit.command.kill
        - essentials.home
        - essentials.kit
        - essentials.kit.pvp
        - essentials.kit.starter
        - essentials.kits
        - essentials.sethome
        - essentials.tpa
        - essentials.tpaccept
        - essentials.tpadeny
        inheritance:
        - g:groupmanager_default
        - g:bukkit_default
        - g:essentials_default
        - g:towny_default
        info:
          prefix: '&e'
          build: false
          suffix: ''
      Owner:
        default: false
        permissions:
        - -vanish.*
        - '*'
        inheritance:
        - admin
        info:
          prefix: '&4[&bO&2w&5n&ee&1r&4]'
          build: true
          suffix: ''
      Builder:
        default: false
        permissions: []
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: '&2'
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions: []
        inheritance:
        - builder
        - g:groupmanager_moderator
        - g:bukkit_moderator
        - g:essentials_moderator
        - g:towny_moderator
        - g:vanish_moderator
        info:
          prefix: '&5'
          build: true
          suffix: ''
      Admin:
        default: false
        permissions:
        - essentials.ban
        - essentials.ipban
        - essentials.tempban
        - essentials.unban
        - essentials.unipban
        inheritance:
        - moderator
        - g:groupmanager_admin
        - g:bukkit_admin
        - g:essentials_admin
        - g:towny_admin
        - g:vanish_admin
        info:
          prefix: '&4[&2Admin&4]'
          build: true
          suffix: ''
      Helper:
        default: false
        permissions:
        - essentials.fly
        - essentials.kick
        - essentials.mute
        inheritance:
        - default
        info:
          prefix: '&4[&cHelper&4]'
          build: false
          suffix: ''
    
     
  8. Offline

    JaguarJo

    noseynose03 The kit nodes you used were essentials.kit.pvp and essentials.kit.starter . The correct nodes have an 's' in the middle, like this: essentials.kits.pvp and essentials.kits.starter . Other people have already told you this, but I'm gonna guess that you just didn't know what they meant or you overlooked the 's' difference and thought that was how you had it already. It's an easy thing to miss sometimes.
     
Thread Status:
Not open for further replies.

Share This Page