Advertisement
Guest User

Untitled

a guest
May 19th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.76 KB | None | 0 0
  1.                 DA3F_Action = player addAction ["damage player",{
  2.  
  3.                 (getAllHitPointsDamage player)params[
  4.                     ["_DA3F_HitPart", [], [[]]],
  5.                     ["_DA3F_memory", [], [[]]],
  6.                     ["_DA3F_Values", [], [[]]]
  7.                 ];
  8.  
  9.                 hint str [_DA3F_HitPart,_DA3F_memory,_DA3F_Values];
  10.                 copyToClipboard str [_DA3F_HitPart,_DA3F_memory,_DA3F_Values];
  11.                 _confirmDelAction = ["Souhaites-tu retirer l'action ?","Confirmation","OUI","NON"]call bis_fnc_GUImessage;
  12.                 if !(isNil "_confirmDelAction") exitWith {};
  13.                 if !(_confirmDelAction) exitWith {};
  14.                 player removeAction DA3F_Action;
  15.                 DA3F_Action= nil;
  16.             }];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement