ACE3/addons/markers/functions/fnc_sendMarkersJIP.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

26 lines
467 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Server: Recives a dummy logic, sends marker data back to the owner.
*
* Arguments:
* 0: Logic <OBJECT>
*
* Return Value:
* None
*
* Example:
* [onUnloadEvent] call ace_markers_fnc_sendMarkersJIP;
*
* Public: No
*/
params ["_owner"];
TRACE_1("params",_owner);
[
QGVAR(setMarkerJIP),
[GETGVAR(allMapMarkers,[]), GETGVAR(allMapMarkersProperties,[])],
_owner
] call CBA_fnc_ownerEvent;