ACE3/addons/common/functions/fnc__handleRequestAllSyncedEvents.sqf
GhostIsSpooky 97deef5617
General - Use engine hashmaps (#8468)
Co-authored-by: Dedmen Miller <dedmen@users.noreply.github.com>
2021-10-10 18:55:14 +02:00

28 lines
531 B
Plaintext

#include "script_component.hpp"
/*
* Author: jaynus
* Handles a server-side request for synchronization ALL events on JIP to a client.
*
* Arguments:
* 0: client <OBJECT>
*
* Return Value:
* Event is successed <BOOL>
*
* Example:
* [bob] call ace_common_fnc__handleRequestAllSyncedEvents
*
* Public: No
*/
params ["_client"];
{
//IGNORE_PRIVATE_WARNING ["_x", "_y"];
_y params ["", "_eventlog"];
["ACEs", [_x, _eventLog], _client] call CBA_fnc_targetEvent;
false
} forEach GVAR(syncedEvents);
true