Advertisement
Guest User

Untitled

a guest
Jan 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.30 KB | None | 0 0
  1. removeAllWeapons _this; removeAllItems _this; removeAllAssignedItems _this; removeUniform _this; removeVest _this;
  2. removeBackpack _this; removeHeadgear _this; removeGoggles _this;
  3.  
  4. _this addUniform "rhsgref_uniform_altis_lizard";
  5. _this addVest "rhssaf_vest_md12_digital";
  6. _this addBackpack "MEC_SAA_RPG7_Backpack";
  7. _this removeItemFromBackpack "rhs_rpg7_PG7VL_mag";
  8. _this removeItemFromBackpack "rhs_rpg7_PG7VL_mag";
  9. _this removeItemFromBackpack "rhs_rpg7_PG7VL_mag";
  10. _this addHeadgear "rhssaf_helmet_m97_olive_nocamo_black_ess";
  11.  
  12. switch (floor random [5, 0, 4]) do {
  13.     case 0:{ _this addWeapon "hlc_rifle_g3a3" && _this addMagazines ["hlc_20rnd_762x51_t_G3", 5];};
  14.     case 1:{ _this addWeapon "hlc_rifle_g3a3" && _this addWeapon "rhs_weap_rpg7" && _this addItemToBackpack "rhs_rpg7_PG7VL_mag" && _this addMagazines ["hlc_20rnd_762x51_t_G3", 5];};
  15.     case 2:{ _this addWeapon "hlc_rifle_g3a3" && _this addWeapon "rhs_weap_rpg7" && _this addItemToBackpack "rhs_rpg7_PG7VL_mag" && _this addMagazines ["hlc_20rnd_762x51_t_G3", 5];};
  16.     case 3:{ _this addWeapon "hlc_lmg_MG3" && _this addMagazines ["hlc_50Rnd_762x51_B_MG3", 3]; };
  17.     case 4:{ _this addWeapon "hlc_rifle_g3a3" && _this addWeapon "rhs_weap_rpg7" && _this addItemToBackpack "rhs_rpg7_PG7VL_mag" && _this addMagazines ["hlc_20rnd_762x51_t_G3", 5];};
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement