1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. Hey Guest, is it this your first time on the forums?

    Visit the Beginner's Box

    Introduce yourself, read some of the ins and outs of the community, access to useful links and information.

    Dismiss Notice

some problem with editing KingDoms

Discussion in 'Modding [KAG Classic]' started by miniu, Jan 2, 2013.

  1. miniu

    miniu Haxor

    Messages:
    765
    Hi!

    I just edited KingDoms. I wanna have that efect:
    Blue warriors > only knight class
    Red archers> only archers
    etc.
    when i do that , all class look like them, but working as builders
    Look, and say what is wrong
    Mods.cfg <team>
    Code:
    # rules for game team
    # description:
       
        classes =Rules/Fw's 2/mod.cfg;
                                                 
        name = Mods
        emblem = GUI/emblem2.png
        teamcolor = 158; 58; 187
       
        unit_count = -1    # units in team = unit_count * number of players; -1 unlimited
        score_limit = 0    # score_limit; 0 no limit
        spawn_type = 0            # 0 - pick; 1 - random; 2 - hot spot
       
    #    use red bridges
    #                use blue bridges
    #    use red doors
    #    use blue doors
       
     
    # HELP:
    # itempick_scoreaction = capture / touch
    and class
    Code:
    # rules for game class
    # description:
        
        inventory =
                                                  
        name = Mod
        emblem = GUI/knight_icon.png
        
        actor_name = runner   
        actor_config = 
        actor_sprite_size = 32
        actor_sprite_male = Sprites/knightMale.png
        actor_sprite_female = Sprites/knightFemale.png
        actor_heads_size = 16
        actor_heads_male = Sprites/MaleHeads.png
        actor_heads_female = Sprites/FemaleHeads.png    
    
        default_health = 6.0
        default_armor = 0.0    
    
         stone_default = 0
         wood_default = 0
         gold_default = 0
         arrows_default = 0
         bombs_default = 3
             
         stone_warmup = 0
         wood_warmup = 0
         gold_warmup = 0
         arrows_warmup = 0
         bombs_warmup = 3
    [/spoiler] 
     
  2. Mazey

    Mazey Haxor Global Moderator Forum Moderator Staff Alumni Donator Official Server Admin

    Messages:
    1,914
    Must be
    Code:
        name = Mod
        tool = knight
        emblem = GUI/knight_icon.png
     
    miniu likes this.
  3. miniu

    miniu Haxor

    Messages:
    765
    Helped , Thanks !