Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: belly3031
Just want a trigger to set all the zombies health to a certain amount please
ModmeBot:
Reply By: mathfag
ModmeBot:
Reply By: Harry Bo21
mathfag
function trigger_health() { trig = GetEnt("health_trig","targetname"); trig waittill("trigger", player); zombies = GetAiSpeciesArray( "axis", "all" ); foreach(zom in zombies) { zom.health = 42069; } }