mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
616 B
Plaintext
29 lines
616 B
Plaintext
/*
|
|
* Author: Nou
|
|
*
|
|
* Execute a event only on the server.
|
|
*
|
|
* Argument:
|
|
* 0: Event name (string)
|
|
* 1: Event args (any)
|
|
*
|
|
* Return value:
|
|
* Nothing
|
|
*/
|
|
#include "script_component.hpp"
|
|
//IGNORE_PRIVATE_WARNING("_handleNetEvent");
|
|
|
|
PARAMS_2(_eventName,_eventArgs);
|
|
|
|
#ifdef DEBUG_EVENTS
|
|
diag_log text format[ARR_2("* Server Event: %1",_eventName)];
|
|
diag_log text format[ARR_2(" args=%1",_eventArgs)];
|
|
#endif
|
|
|
|
ACEg = [_eventName, _eventArgs];
|
|
if (!isServer) then {
|
|
publicVariableServer "ACEg";
|
|
} else {
|
|
["ACEg", ACEg] call FUNC(_handleNetEvent);
|
|
};
|