Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2019
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.40 KB | None | 0 0
  1. _man_type = ["rhs_vdv_machinegunner","rhs_vdv_marksman","rhs_vdv_efreitor","rhs_vdv_at","rhs_vdv_junior_sergeant","rhs_vdv_LAT"];
  2. _position = position SpawnPointAI;
  3.  
  4. while{alive player} do
  5. {
  6.   _group = createGroup east;
  7.  
  8.   for "_i" from 1 to (count _man_type) step 1 do
  9.   {
  10.     _unitType = _man_type select _i;
  11.     _unit = _group createUnit [_unitType, _position, [], 0, "FORM"];
  12.   };
  13.  
  14.   sleep 20;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement