AI Won't use shields [Solved]
Posted: Wed Nov 30, 2011 10:56 pm
1 Quick Question: How do you make the ai use the shields?
thanks
thanks
Get more from your games!
http://www.gametoast.com/
Code: Select all
HealthType = "droid"Code: Select all
SetupTeams{
all = {
team = ALL,
units = 20, -- Determines max unit count
reinforcements = 150, -- Determines default ticket count threshold
soldier = { "all_inf_rifleman_snow",9, 25}, -- First number determines minimum amount of A.I. to spawn as this unit; second number determines max amount of A.I. for this unit
assault = { "all_inf_rocketeer_snow",1,4},
engineer = { "all_inf_engineer_snow",1,4},
sniper = { "all_inf_sniper_snow",1,4},
officer = { "all_inf_officer_snow",1,4},
special = { "all_inf_wookiee_snow",1,4},
},
imp = {
team = IMP,
units = 20,
reinforcements = 150,
soldier = { "imp_inf_rifleman_snow",9, 25},
assault = { "imp_inf_rocketeer_snow",1,4},
engineer = { "imp_inf_engineer_snow",1,4},
sniper = { "imp_inf_sniper_snow",1,4},
officer = { "imp_inf_officer_snow",1,4},
special = { "imp_inf_dark_trooper",1,4},
},
}Sounds correct to me.Marth8880 wrote:I may be wrong about what the second number does, I can't remember.