2015-03-28 01:51:30 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Server: Recives a dummy logic, sends marker data back to the owner.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Logic <OBJECT>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2015-08-22 12:08:35 +00:00
|
|
|
* None
|
2015-03-28 01:51:30 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [onUnloadEvent] call ace_markers_fnc_sendMarkerJIP;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 16:17:06 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-08-23 19:25:41 +00:00
|
|
|
params ["_logic"];
|
|
|
|
TRACE_1("params",_logic);
|
2015-01-18 16:17:06 +00:00
|
|
|
|
2015-08-22 12:08:35 +00:00
|
|
|
[
|
|
|
|
QGVAR(setMarkerJIP),
|
2015-08-23 19:25:41 +00:00
|
|
|
[_logic],
|
2015-08-22 12:08:35 +00:00
|
|
|
[GETGVAR(allMapMarkers,[]), GETGVAR(allMapMarkersProperties,[]), _logic]
|
2015-01-18 16:17:06 +00:00
|
|
|
] call EFUNC(common,targetEvent);
|