Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.57 KB | None | 0 0
  1. /*
  2. [DA3F] Aroun LeBriCodeur
  3. menu molette
  4. pour mission Arma 3
  5. réparation & arsenal
  6. à exécuter dans :
  7. OnPlayerRespawn.sqf
  8. []execVM "DA3F_SetupAction";
  9. */
  10. player addAction ["Réparer",{
  11. _vehTarget= vehicle cursorTarget;
  12.     hint "Réparation en cours...";
  13.     sleep (3+random 3);
  14.     {
  15.         _x setDamage 0;
  16.         _x setFuel 1;
  17.     } forEach [_vehTarget];
  18.     hint "Véhicule réparé !";
  19. },"",0,false,false,"","(!(cursorTarget isKindOf 'man')) && (player distance cursorTarget)< 7"];
  20.  
  21. player addAction ["Arsenal",{
  22. hint "Ouverture Arsenal";
  23. ["Open",true ] spawn BIS_fnc_arsenal;
  24. }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement