ACE3/addons/common/functions/fnc_globalEvent.sqf

15 lines
407 B
Plaintext
Raw Normal View History

2016-06-09 12:24:45 +00:00
#define DEBUG_MODE_FULL
2016-05-30 16:37:03 +00:00
#include "script_component.hpp"
params ["_eventName", "_eventArgs"];
2016-06-09 12:24:45 +00:00
private _newName = getText (configFile >> "ACE_newEvents" >> _eventName);
if (_newName != "") then {
TRACE_2("Switching Names",_eventName,_newName);
_eventName = _newName;
};
2016-05-30 16:37:03 +00:00
2016-06-09 12:24:45 +00:00
[_eventName, _eventArgs] call CBA_fnc_globalEvent;
ACE_DEPRECATED("ace_common_fnc_globalEvent","3.8.0","CBA_fnc_globalEvent");