mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
814 B
Plaintext
31 lines
814 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* End radio transmissions of addons TFAR and ACRE2. TFAR v0.9.7, ACRE Public Beta 2.0.3.571
|
|
*
|
|
* Arguments:
|
|
* None.
|
|
*
|
|
* Return Value:
|
|
* None.
|
|
*
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
// ACRE
|
|
if (isClass (configFile >> "CfgPatches" >> "acre_main")) then {
|
|
[-1] call acre_sys_core_fnc_handleMultiPttKeyPressUp;
|
|
[0] call acre_sys_core_fnc_handleMultiPttKeyPressUp;
|
|
[1] call acre_sys_core_fnc_handleMultiPttKeyPressUp;
|
|
[2] call acre_sys_core_fnc_handleMultiPttKeyPressUp;
|
|
};
|
|
|
|
// TFAR
|
|
if (isClass (configFile >> "CfgPatches" >> "task_force_radio")) then {
|
|
call TFAR_fnc_onSwTangentReleased;
|
|
call TFAR_fnc_onAdditionalSwTangentReleased;
|
|
call TFAR_fnc_onLRTangentReleased;
|
|
call TFAR_fnc_onAdditionalLRTangentReleased;
|
|
call TFAR_fnc_onDDTangentReleased;
|
|
};
|