mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
705 B
Plaintext
31 lines
705 B
Plaintext
|
/*
|
||
|
* Author: jaynus
|
||
|
*
|
||
|
* Call and propegate a synced event
|
||
|
*
|
||
|
* Argument:
|
||
|
* 0: Name (String)
|
||
|
* 1: Arguments (Array)
|
||
|
* 2: TTL (Number or Code) [Optional] for this specific event call
|
||
|
*
|
||
|
* Return value:
|
||
|
* Boolean of success
|
||
|
*/
|
||
|
#define DEBUG_MODE_FULL
|
||
|
#include "script_component.hpp"
|
||
|
PARAMS_2(_name,_args);
|
||
|
private["_ttl", "_eventData", "_internalData", "_eventLog"];
|
||
|
|
||
|
if( (count _this) > 2) then {
|
||
|
_ttl = _this select 2;
|
||
|
} else {
|
||
|
_ttl = 0;
|
||
|
};
|
||
|
|
||
|
if(!HASH_HASKEY(GVAR(syncedEvents),_name)) exitWith {
|
||
|
diag_log text format["[ACE] Error, synced event key not found."];
|
||
|
false
|
||
|
};
|
||
|
|
||
|
_eventData = [_name, _args,_ttl];
|
||
|
["SEH", _eventData] call FUNC(globalEvent);
|