Advertisement
icdb

[ArmA3] BIS_fnc_holdActionAdd via remoteExec example

Nov 25th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.69 KB | None | 0 0
  1. _target = (_this select 1);
  2. _title = "Test";
  3. _idleIcon = "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa";
  4. _progressIcon = "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa";
  5. _condShow = "_this distance _target < 3";
  6. _condProgress = "_caller distance _target < 3";
  7. _codeStart = {};
  8. _codeProgress = {};
  9. _codeCompleted = {};
  10. _codeInterupted = {};
  11. _arguments = [];
  12. _duration = 10;
  13. _priority = 10;
  14. _removeCompleted = false;
  15. _showUncon = false;
  16.  
  17. [_target,_title,_idleIcon,_progressIcon,_condShow,_condProgress,_codeStart,_codeProgress,_codeCompleted,_codeInterupted,_arguments,_duration,_priority,_removeCompleted,_showUncon] remoteExec ["BIS_fnc_holdActionAdd",0,true];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement