ACE3/addons/common/functions/fnc_serverEvent.sqf

30 lines
545 B
Plaintext
Raw Normal View History

/*
* Author: Nou
* Execute a event only on the server.
*
* Argument:
2015-09-19 18:34:07 +00:00
* 0: Event name <STRING>
* 1: Event args <ANY>
*
* Return Value:
* None
*
2015-09-19 18:34:07 +00:00
* Public: Yes
*/
#include "script_component.hpp"
2015-09-19 18:34:07 +00:00
params ["_eventName", "_eventArgs"];
2015-09-19 18:34:07 +00:00
#ifdef DEBUG_EVENTS
ACE_LOGINFO_1("* Server Event: %1",_eventName);
ACE_LOGINFO_1(" args=%1",_eventArgs);
#endif
ACEg = [_eventName, _eventArgs];
2015-09-19 18:34:07 +00:00
2015-05-14 18:06:06 +00:00
if (!isServer) then {
publicVariableServer "ACEg";
} else {
["ACEg", ACEg] call FUNC(_handleNetEvent);
};