Advertisement
secondcoming

Untitled

Aug 6th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 2.28 KB | None | 0 0
  1. span class="re5"> 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 = "3 * 60";
  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 = "3 * 60";
  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 = "5 * 60";
  61.     };
  62.     class PlantChargeConcrete: PlantChargeWood
  63.     {
  64.         duration = "7 * 60";
  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. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement