Advertisement
iaretechnician

Boba

Feb 25th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1. //Carbomb
  2.  
  3.         if ((_invehicle)&& ((typeof vehicle player == "Lada2_TK_CIV_EP1")  || (typeof vehicle == "sheli")) then {
  4.             if (s_player_attach_bomb < 0 && typeof vehicle == "Lada2_TK_CIV_EP1" ) then {
  5.              CARBOMB_VEH = _vehicle;
  6.             s_player_attach_bomb = CARBOMB_VEH addAction ["<t color='#FF0000'>DETONATE!</t>", "scripts\detonate.sqf"];
  7.             s_player_attach_smoke = CARBOMB_VEH addAction ["<t color='#0000AA'>SMOKESCREEN!</t>", "scripts\smokescreen.sqf"];
  8.  
  9.                    
  10.             };
  11.         }else {
  12.             if (s_player_attach_bomb >= 0) then {
  13.             CARBOMB_VEH removeAction s_player_attach_bomb;
  14.             CARBOMB_VEH removeAction s_player_attach_smoke;
  15.             s_player_attach_bomb = -1;
  16.             s_player_attach_smoke = -1;
  17.             };
  18.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement