123456789101112131415161718192021222324252627282930313233 |
- _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 2 do {_unit addItemToVest "rhs_30Rnd_545x39_AK";};
- for "_i" from 1 to 4 do {_unit addItemToBackpack "rhs_30Rnd_545x39_AK";};
- for "_i" from 1 to 2 do {_unit addItemToVest "16Rnd_9x21_Mag";};
- _unit addBackpack "B_AssaultPack_rgr";
- _unit addHeadgear "rhs_6b28_green";
- _unit addGoggles "G_Bandanna_oli";
- _unit addWeapon "rhs_weap_ak74m_camo_npz";
- _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";
|