ACE3/addons/markers/functions/fnc_sendMarkersJIP.sqf
2017-12-11 20:11:21 +01:00

26 lines
463 B
Plaintext

/*
* 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_sendMarkerJIP;
*
* Public: No
*/
#include "script_component.hpp"
params ["_owner"];
TRACE_1("params",_owner);
[
QGVAR(setMarkerJIP),
[GETGVAR(allMapMarkers,[]), GETGVAR(allMapMarkersProperties,[])],
_owner
] call CBA_fnc_ownerEvent;