Code:
_squad = ["US_Soldier_SL_EP1","US_Soldier_HAT_EP1","US_Soldier_AR_EP1","US_Soldier_EP1","US_Soldier_EP1"];
_group = createGroup WEST;
_n=0;
_count= (count(_squad));
_spawnpos = getMarkerPos "respawn_west";
_squad select 0 createUnit [_spawnpos, _group,"", 0.45, "LIEUTENANT"];
while {(_n<_count)} do
{
_n=_n+1;
_unitType = _squad select _n;
_unitType createUnit [_spawnpos, _group];
};
[(units _group)] execVM "DAPMAN\Init.sqf"; - this string run script, which assign wound-scripts for new created units.