i have tried two scripts and they both did exactly the same thing...
what i want to do is make an ai battle, and when each squad looses one guy, one more respawns... but no matter what they constantly spawn and its only the 2nd squad... here are the scripts i tried
Code: Select all
(script continuous respawner
(sleep_until (<= (ai_living_count 0000) 0))
(ai_place 0000)
)
Code: Select all
(script startup respawner
(sleep_until (<= (ai_living_count 311) 0))
(ai_place 0000)
)
i renamed the first one to 312, and the 2nd one to 315, and still only the first one spawned, and it spawned constantly
any ideas?