Lucky44 13 Posted May 14, 2011 I'm running Combined Operations, and I want to spawn groups of Takistani militia (or GUER insurgents, really...just some non-regular army insurgent types). I'm using BIS_fnc_spawnGroup. And I can only get it to create Taki regular army. If I try to spawn resistance, it creates Arma2 (Russian) style insurgents. I tried using the Faction instead of the Side, but that didn't work. Any ideas how to get the Takistani non-regulars to spawn using BIS_fnc_spawnGroup? Share this post Link to post Share on other sites
Gunter Severloh 4072 Posted May 15, 2011 Using a script like this: AI respawn group patrol area using UPS http://www.armaholic.com/page.php?id=6540 all you would need to do is put down a squad of your choice, then put the code for respawn in the squad leader's act line, set the number of times to respawn, and how long before they respawn. The create a marker where the squad will respawn, can be small like specific spot, or big which will spawn them anywhere within the marker radius area. Then create a marker somewhere on the island you wish them to patrol, or move to, and then presto. Once the squad has been all killed, then the squad will respawn as a group once all squad members have been killed, then it repeats from the start, you can do this with vehicles, air, ect,. and multiple groups. As for your question, I have no idea, I use scripts only, but the above is an example of what you can do instead if you wish. Maybe someone may know your issue. Share this post Link to post Share on other sites
murderhorse 10 Posted May 15, 2011 You're probably using "INS" instead of "BIS_TK_INS" Hope this helps. Share this post Link to post Share on other sites
Lucky44 13 Posted May 15, 2011 You're probably using "INS" instead of "BIS_TK_INS"Hope this helps. I should have put my code in...I'm using this _SpawnGrp = [getMarkerPos _spwn, RESISTANCE, 9,[],[], [1,1,1]] call BIS_fnc_spawnGroup; I see no way to use BIS_TK_INS...I had tried putting that in instead of RESISTANCE, but nothing spawned. Share this post Link to post Share on other sites
dale0404 5 Posted May 15, 2011 I should have put my code in...I'm using this _SpawnGrp = [getMarkerPos _spwn, RESISTANCE, 9,[],[], [1,1,1]] call BIS_fnc_spawnGroup; I see no way to use BIS_TK_INS...I had tried putting that in instead of RESISTANCE, but nothing spawned. You need something like this: all { grp = [getMarkerPos "do1", EAST, (configFile >> "CfgGroups" >> "East" >> "BIS_TK_INS" >> "Infantry" >> "TK_INS_Group")] call BIS_fnc_spawnGroup; Share this post Link to post Share on other sites
Lucky44 13 Posted May 15, 2011 Aha! Yes, that makes sense. Using the config rather than the side name. Thanks! Share this post Link to post Share on other sites