1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00
ACE3/addons/common/functions/fnc__handleRequestAllSyncedEvents.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes ()
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

28 lines
534 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