XEH_postinit.sqf 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. #include "config_macros.hpp"
  2. #include "\a3\editor_f\Data\Scripts\dikCodes.h"
  3. //Run the jumppack script
  4. [] spawn {
  5. [] spawn compile preprocessFileLineNumbers 'macro_mod_script_path\jumppack\jumppack.sqf';
  6. sleep 0.5;
  7. call compile preprocessFileLineNumbers 'macro_mod_script_path\jumppack\jumppack_effects.sqf';
  8. };
  9. // Add nightvision event handler
  10. call macro_fnc_name(nightvision);
  11. #define QWEAP_NOFAM(name) macro_quote(macro_new_weapon_nofam(name))
  12. #define QWEAP_LAUNCH(name) macro_quote(macro_new_weapon(launcher,name))
  13. // Drone Recharge
  14. RD501_DRONE_BATTERY = "RD501_r2_charge_pack_x10_mag";
  15. //Force Walk
  16. RD501_FORCE_WALK_WEAPONS = [macro_quote(macro_new_weapon_nofam(z1000))];
  17. ["weapon", macro_fnc_name(heavyWeaponHandlePlayerWeaponChanged)] call CBA_fnc_addPlayerEventHandler;
  18. //Auto Reload On Equip
  19. RD501_AUTO_RELOAD_ON_EQUIP = [QWEAP_NOFAM(z1000),QWEAP_LAUNCH(rps1)];
  20. ["weapon", macro_fnc_name(reloadWeaponOnFirstSelected)] call CBA_fnc_addPlayerEventHandler;
  21. // Magclamp
  22. call macro_fnc_name(magclamp);
  23. // Flip Backpack
  24. rd501_flip_vehicle_validBackpacks = ["RD501_JLTS_Clone_Flip_backpack"];
  25. ["rd501_external_reload", { _this call rd501_fnc_onReloadExternalHandler }, []] call CBA_fnc_addEventHandlerArgs;
  26. // Fortify Tool Adjustments
  27. call macro_fnc_name(fortify_tool);
  28. // Medical CCP Building
  29. rd501_medical_ccp_building = "Land_Medevac_house_V1_F";
  30. rd501_medical_ccp_classes = ["Land_Medevac_house_V1_F"];
  31. rd501_medical_ccp_truck = "rd501_mash_truck";
  32. rd501_medical_ccp_stitchDurationSeconds = 5;
  33. rd501_medical_ccp_bandageDurationSeconds = 5;
  34. ["rd501_medical_ccp_incrementStitch",{
  35. _this call rd501_fnc_incrementStitchProgress
  36. }] call CBA_fnc_addEventHandler;
  37. ["rd501_medical_ccp_incrementBandage",{
  38. _this call rd501_fnc_incrementBandageProgress
  39. }] call CBA_fnc_addEventHandler;
  40. ["rd501_medical_ccp_deployCCPLocal", {
  41. _this call rd501_fnc_deployCCPLocal;
  42. }] call CBA_fnc_addEventHandler;
  43. ["rd501_medical_ccp_deployCCPServer", {
  44. _this call rd501_fnc_deployCCPServer;
  45. }] call CBA_fnc_addEventHandler;
  46. ["rd501_medical_ccp_packupCCPServer", {
  47. _this call rd501_fnc_packupCCPServer;
  48. }] call CBA_fnc_addEventHandler;
  49. if(!isDedicated) then {
  50. [
  51. "RD501 Miscellaneous",
  52. "rd501_misc",
  53. [
  54. "Mark Dot",
  55. "Place a black dot in global at your current position"
  56. ],
  57. {
  58. [] call rd501_fnc_placeDotMarkerAtSelf;
  59. },
  60. "",
  61. [
  62. DIK_CALCULATOR,
  63. [false,false,false]
  64. ],
  65. false
  66. ] call cba_fnc_addKeybind;
  67. };
  68. // Surrender stun
  69. call macro_fnc_name(stun);
  70. // Jammers
  71. ["rd501_jammersClear", {
  72. _this call rd501_fnc_jammersClear;
  73. }] call CBA_fnc_addEventHandler;
  74. ["rd501_jammersAddServer", {
  75. _this call rd501_fnc_jammersAddServer;
  76. }] call CBA_fnc_addEventHandler;
  77. ["rd501_jammersRemoveServer", {
  78. _this call rd501_fnc_jammersRemoveServer;
  79. }] call CBA_fnc_addEventHandler;
  80. ["rd501_jammersUpdateLocal", {
  81. _this call rd501_fnc_jammersUpdateLocal;
  82. }] call CBA_fnc_addEventHandler;
  83. // Fired Deployables
  84. if(isServer) then {
  85. ["rd501_fired_deployable_deployServer", {
  86. _this call rd501_fnc_fired_deployable_deployServer
  87. }] call CBA_fnc_addEventHandler;
  88. ["rd501_fired_deployable_personalShieldDeployServer", {
  89. _this call rd501_fnc_fired_deployable_personalShieldDeployServer
  90. }] call CBA_fnc_addEventHandler;
  91. };
  92. if(hasInterface) then {
  93. ["ace_firedPlayer", {
  94. _this call rd501_fnc_fired_deployable_firedHandler
  95. }] call CBA_fnc_addEventHandler;
  96. ["rd501_fired_deployable_soundLoop", {
  97. _this call rd501_fnc_fired_deployable_loopSoundLocal
  98. }] call CBA_fnc_addEventHandler;
  99. ["rd501_fired_deployable_soundEnd", {
  100. _this call rd501_fnc_fired_deployable_endSoundLocal
  101. }] call CBA_fnc_addEventHandler;
  102. };
  103. // Volatile
  104. ["rd501_volatile_destroy", {
  105. _this call rd501_fnc_volatile_destroy;
  106. }] call CBA_fnc_addEventHandler;
  107. ["rd501_volatile_create", {
  108. _this call rd501_fnc_volatile_create;
  109. }] call CBA_fnc_addEventHandler;
  110. // Shield
  111. ["rd501_shield_destroy", {
  112. _this call rd501_fnc_shield_onDestroy;
  113. }] call CBA_fnc_addEventHandler;
  114. ["rd501_shield_lowHealth", {
  115. _this call rd501_fnc_shield_onLowHealth;
  116. }] call CBA_fnc_addEventHandler;
  117. ["rd501_shield_normalHealth", {
  118. _this call rd501_fnc_shield_onNormalHealth;
  119. }] call CBA_fnc_addEventHandler;