ACE3/addons/common/functions/fnc_syncedEvent.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

30 lines
641 B
Plaintext

/*
* Author: jaynus
* Call and propegate a synced event
*
* Arguments:
* 0: Name <STRING>
* 1: Arguments <ARRAY>
* 2: TTL <NUMBER, CODE> [Optional] for this specific event call
*
* Return Value:
* Boolean of success <BOOL>
*
* Example:
* ["bob", [args], 5] call ace_common_fnc_syncedEvent
*
* Public: No
*/
#include "script_component.hpp"
params ["_name", "_args", ["_ttl", 0]];
if !([GVAR(syncedEvents), _name] call CBA_fnc_hashHasKey) exitWith {
ERROR_1("Synced event key [%1] not found (syncedEvent).", _name);
false
};
private _eventData = [_name, _args, _ttl];
["ACEe", _eventData] call CBA_fnc_globalEvent;