Advertisement
Matt34

Untitled

Jun 27th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. if (("ItemEtool" in magazines player) && ("PartWoodPile" in magazines player)) then {
  2. hasBomb = true;
  3. } else {
  4. hasBomb = false;
  5. };
  6.  
  7. if ((hasBomb) && ("HandGrenade_West" in magazines player)) then {
  8. if (s_player_makeBomb < 0) then {
  9. s_player_makeBomb = player addAction [("<t color=""#c30000"">" + ("Place Exploding Booby Trap") +"</t>"),"scripts\boobytrap.sqf","",5,false,true,"",""];
  10. };
  11. } else {
  12. player removeAction s_player_makeBomb;
  13. s_player_makeBomb = -1;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement