Advertisement
MGT

CfgExileDelayedActions

MGT
May 22nd, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. class CfgExileDelayedActions
  2. {
  3. class Abstract
  4. {
  5. duration = 10;
  6. abortInCombatMode = 1;
  7. durationFunction = "";
  8. animation = "";
  9. animationType = "switchMove";
  10. failChance = 0;
  11. conditionFunction = "";
  12. completedFunction = "";
  13. abortedFunction = "";
  14. failedFunction = "";
  15. };
  16. class RepairVehicle: Abstract
  17. {
  18. duration = 37;
  19. animation = "Exile_Acts_RepairVehicle01_Animation01";
  20. conditionFunction = "ExileClient_action_repairVehicle_condition";
  21. completedFunction = "ExileClient_action_repairVehicle_completed";
  22. };
  23. class HotwireVehicle: Abstract
  24. {
  25. duration = 180;
  26. failChance = 50;
  27. animation = "Exile_Acts_RepairVehicle01_Animation01";
  28. conditionFunction = "ExileClient_action_hotwireVehicle_condition";
  29. completedFunction = "ExileClient_action_hotwireVehicle_completed";
  30. failedFunction = "ExileClient_action_hotwireVehicle_failed";
  31. };
  32. class StealFlag: Abstract
  33. {
  34. duration = 60;
  35. abortInCombatMode = 0;
  36. durationFunction = "ExileClient_action_stealFlag_duration";
  37. animation = "Exile_Acts_RepairVehicle01_Animation01";
  38. conditionFunction = "ExileClient_action_stealFlag_condition";
  39. completedFunction = "ExileClient_action_stealFlag_completed";
  40. };
  41. class HideBody: Abstract
  42. {
  43. duration = 10;
  44. animation = "Exile_Shovel_Dig01";
  45. conditionFunction = "ExileClient_action_HideBody_condition";
  46. completedFunction = "ExileClient_action_HideBody_completed";
  47. };
  48. class PlantChargeWood: Abstract
  49. {
  50. duration = 30;
  51. abortInCombatMode = 0;
  52. animation = "Exile_Acts_RepairVehicle01_Animation01";
  53. conditionFunction = "ExileClient_action_breaching_condition";
  54. completedFunction = "ExileClient_action_breaching_completed";
  55. failedFunction = "ExileClient_action_breaching_failed";
  56. abortedFunction = "ExileClient_action_breaching_aborted";
  57. };
  58. class PlantChargeMetal: PlantChargeWood
  59. {
  60. duration = "60";
  61. };
  62. class PlantChargeConcrete: PlantChargeWood
  63. {
  64. duration = "90";
  65. };
  66. class RepairConstruction: Abstract
  67. {
  68. animation = "Exile_Acts_RepairVehicle01_Animation01";
  69. durationFunction = "ExileClient_action_repairConstruction_duration";
  70. conditionFunction = "ExileClient_action_repairConstruction_condition";
  71. completedFunction = "ExileClient_action_repairConstruction_completed";
  72. };
  73. class GutAnimal: Abstract
  74. {
  75. duration = 10;
  76. animationType = "playMoveNow";
  77. animation = "AinvPknlMstpSnonWnonDr_medic5";
  78. conditionFunction = "ExileClient_action_GutAnimal_condition";
  79. completedFunction = "ExileClient_action_GutAnimal_completed";
  80. };
  81. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement