Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. // Intel Skript
  2. // Intel Definieren
  3. _Intel = _this select 0;
  4.  
  5. // Typ der Funktion ruft Definieren
  6. _caller = _this select 1;
  7.  
  8. // Add Hold Action to Free Hostage
  9. [
  10. /* 0 object */ _Intel,
  11. /* 1 action title */ "Laptop Durchsuchen",
  12. /* 2 idle icon */ "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_search_ca.paa",
  13. /* 3 progress icon */ "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_search_ca.paa",
  14. /* 4 condition to show */ "_this distance _target < 2",
  15. /* 5 condition for action */ "_caller distance _target < 2",
  16. /* 6 code executed on start */ {},
  17. /* 7 code executed per tick */ {},
  18. /* 8 code executed on completion */
  19.  
  20. {
  21. "maker_1" setMarkerAlpha 1;
  22. },
  23.  
  24. /* 9 code executed on interruption */
  25.  
  26. {
  27.  
  28. },
  29.  
  30.  
  31. /* 10 arguments */ [],
  32. /* 11 action duration */ 60,
  33. /* 12 priority */ 0,
  34. /* 13 remove on completion */ false,
  35. /* 14 show unconscious */ false
  36. ]
  37.  
  38.  
  39.  
  40.  
  41. remoteExec ["BIS_fnc_holdActionAdd",0,true];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement