2015-01-13 23:27:42 +00:00
|
|
|
/*
|
|
|
|
* 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"
|
2015-05-14 22:12:40 +00:00
|
|
|
//IGNORE_PRIVATE_WARNING("_handleNetEvent");
|
2015-01-13 23:27:42 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_2(_eventName,_eventArgs);
|
2015-01-13 23:27:42 +00:00
|
|
|
|
2015-04-02 23:05:21 +00:00
|
|
|
#ifdef DEBUG_EVENTS
|
2015-08-26 15:39:44 +00:00
|
|
|
ACE_LOGINFO_1("* Server Event: %1",_eventName);
|
|
|
|
ACE_LOGINFO_1(" args=%1",_eventArgs);
|
2015-04-02 23:05:21 +00:00
|
|
|
#endif
|
2015-01-13 23:27:42 +00:00
|
|
|
|
|
|
|
ACEg = [_eventName, _eventArgs];
|
2015-05-14 18:06:06 +00:00
|
|
|
if (!isServer) then {
|
2015-01-13 23:27:42 +00:00
|
|
|
publicVariableServer "ACEg";
|
|
|
|
} else {
|
|
|
|
["ACEg", ACEg] call FUNC(_handleNetEvent);
|
|
|
|
};
|