ArmaMan360 94 Posted November 3, 2015 I am trying to use BIS's default "BIS_fnc_spawnGroup" command to generate more than 1 group of a particular side via an objective.sqf. Ideally I am looking for something like this i took from the wiki: Example 1: Spawn five random EAST units at aPos: [getPos aPos, EAST, 5] call BIS_fnc_spawnGroup But I want to generate more than 1 Groups using this call. I tried using EOS call line inside the objective.sqf (against inside the traditional openme.sqf which never affects performance in the missions I make) but in this mission it brought down the FPS like crazy 30. I am using a random objective finder script. No AI mods except for certain maps and I am testing this on Stratis airfield. Any reply would be appreciated :D Share this post Link to post Share on other sites
Heinrich Kramer 172 Posted November 3, 2015 for "_i" from 1 to 3 do { [getPos aPos, EAST, 5] call BIS_fnc_spawnGroup }; //spawns the group 3 times https://community.bistudio.com/wiki/for Share this post Link to post Share on other sites
ArmaMan360 94 Posted November 3, 2015 WOW O.O Thank you. Share this post Link to post Share on other sites