ACE3/addons/markers/functions/fnc_sendMarkersJIP.sqf
PabstMirror 24bba5dea6 Headers
2015-03-27 20:51:30 -05:00

26 lines
445 B
Plaintext

/*
* Author: commy2
* Server: Recives a dummy logic, sends marker data back to the owner.
*
* Arguments:
* 0: Logic <OBJECT>
*
* Return Value:
* Nothing
*
* Example:
* [onUnloadEvent] call ace_markers_fnc_sendMarkerJIP;
*
* Public: No
*/
#include "script_component.hpp"
PARAMS_1(_logic);
[QGVAR(setMarkerJIP), [_logic], [
GETGVAR(allMapMarkers,[]),
GETGVAR(allMapMarkersProperties,[]),
_logic
]
] call EFUNC(common,targetEvent);