12345678910111213141516171819202122232425262728 |
- _unit = _this select 0;
- removeAllWeapons _unit;
- removeAllItems _unit;
- removeAllAssignedItems _unit;
- removeVest _unit;
- removeBackpack _unit;
- removeHeadgear _unit;
- removeGoggles _unit;
- sleep 0.5;
- _unit addVest "V_TacVest_camo";
- _unit addItemToVest "FirstAidKit";
- for "_i" from 1 to 3 do { _unit addItemToVest "16Rnd_9x21_Mag";};
- for "_i" from 1 to 3 do { _unit addItemToVest "30Rnd_9x21_Mag";};
- for "_i" from 1 to 2 do { _unit addItemToVest "MiniGrenade";};
- for "_i" from 1 to 2 do { _unit addItemToVest "SmokeShell";};
- _unit addItemToVest "Chemlight_green";
- _unit addHeadgear "H_Cap_headphones";
- _unit addGoggles "G_Balaclava_combat";
- _unit addWeapon "hgun_PDW2000_F";
- _unit addWeapon "hgun_P07_F";
- _unit linkItem "ItemMap";
- _unit linkItem "ItemCompass";
- _unit linkItem "ItemRadio";
|