1234567891011121314151617181920212223242526272829303132 |
- _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_oli";
- for "_i" from 1 to 2 do {_unit addItemToVest "FirstAidKit";};
- for "_i" from 1 to 2 do {_unit addItemToVest "MiniGrenade";};
- for "_i" from 1 to 2 do {_unit addItemToVest "SmokeShell";};
- _unit addItemToVest "Chemlight_green";
- for "_i" from 1 to 5 do {_unit addItemToVest "30Rnd_556x45_Stanag_Tracer_Green";};
- for "_i" from 1 to 2 do {_unit addItemToVest "16Rnd_9x21_Mag";};
- _unit addBackpack "B_AssaultPack_rgr";
- _unit addHeadgear "H_Cap_oli_hs";
- _unit addGoggles "G_Bandanna_oli";
- _unit addWeapon "arifle_Mk20_F";
- _unit addPrimaryWeaponItem "optic_MRCO";
- _unit addWeapon "hgun_P07_F";
- _unit addWeapon "Rangefinder";
- _unit linkItem "ItemMap";
- _unit linkItem "ItemCompass";
- _unit linkItem "ItemGPS";
- _unit linkItem "NVGoggles_INDEP";
|