Advertisement
SigWar

Untitled

Dec 29th, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. [
  2. _myLaptop, //Obejeto que vai mostrar a ação
  3. "Extrair", //Titulo da ação
  4. "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa", //Icone idle
  5. "\a3\ui_f\data\IGUI\Cfg\holdactions\holdAction_connect_ca.paa", //Icone de progresso
  6. "_this distance _target < 3", //Condição da ação
  7. "_this distance _target < 3", //Condição do progresso
  8. { hint "Extração Iniciada!" }, //Inicio
  9. { systemChat str (_this select 3) }, //Tick
  10. { _this call MY_fnc_extractToSafe }, //Completo
  11. { hint "Extração cancelada!" }, //Interrompido
  12. [], //Argumentos passados
  13. 10, //Duração
  14. nil, //Prioridade
  15. true, //Remove ação ao completar
  16. false //Mostra para players inconscientes
  17. ] call BIS_fnc_holdActionAdd;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement