ACE3/addons/respawn/functions/fnc_moduleFriendlyFire.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

34 lines
699 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Initializes the friendly fire module.
*
* Arguments:
* 0: Logic <OBJECT>
* 1: Synced units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
*
* Example:
* [logic, [ACE_Player], true] call ace_respawn_fnc_moduleFriendlyFire
*
* Public: No
*/
params ["_logic", "_units", "_activated"];
if !(_activated) exitWith {};
// this is done for JIP compatibility
if (isServer) then {
[{
missionNamespace setVariable [QGVAR(showFriendlyFireMessage), true];
publicVariable QGVAR(showFriendlyFireMessage);
},
[], 0.1] call CBA_fnc_waitAndExecute;
};
INFO("Friendly Fire Messages Module Initialized.");