Survival Games Help

Discussion in 'Bukkit Help' started by Matthu699, Aug 28, 2013.

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

    Matthu699

    Hello i just put Survival Games on my server today and i enabled the kits and the test kits worked fine but when i made my own all of the sudden they don’t work and when a player joins the game it doesn’t give them an option to select a kit any ideas?
    Code:
     
     
       
    ###########################################################
    #######################  Kits #############################
    ###########################################################
     
     
    ##  Kits
    # the permission for each kit is sg.kits.<kitname> where
    # kit name is the name of the kit
    #
    # cost is the cost to use this kit. #not implemented#
    #
    # icon: the icon to be displayed with this kit
    #
    # contents: the contents of this kit
    #
    # Items are defined as
    #    itemnumber, amount, durabilty, enchantments, name
    # Example: diamond sword with 1 item, full durabilty, shaprness 4, knockback 2 and the name killer
    #    276, 1, 0, sharpness: 4 knockback: 2, killer
    #
     
    #DONT TOUCH THIS
    version: 1
     
     
    enabled: true
     
     
    ## Kit Display Mode
    #
    #  SHOW_ALL    = Show all the kit contents
    #  SHOW_ICON    = Show only the icon
    #  AUTO_SELECT  = Auto select the top level kit
     
    kit-select-mode: 'SHOW_ICON'
     
     
     
     
    kits:
      Defender:
        cost: 0
        icon: '303'
        contents:
        - '360,3'
        - '303'
      Swordsman:
        cost: 0
        icon: '268'
        contents:
        - '360,3'
        - '268'
      Archer:
        cost: 0
        icon: '261'
        contents:
        - '262,3'
        - '261'
      Supporter:
        cost: 0
        icon: '360'
        contents:
        - '360,4'
        - '240,3'
     
  2. Offline

    jdjack

    It sounds to me like they don't have permission. The permission node has actually changed to sg.KIT.kitname as opposed to sg.KITS.kitname. That could be what is causing it, or i may be completely wrong. Just see if that works as it did for me.
     
Thread Status:
Not open for further replies.

Share This Page