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:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [onUnloadEvent] call ace_markers_fnc_sendMarkerJIP;
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-01-18 16:17:06 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-03-28 01:51:30 +00:00
|
|
|
PARAMS_1(_logic);
|
2015-01-18 16:17:06 +00:00
|
|
|
|
2015-03-28 01:51:30 +00:00
|
|
|
[QGVAR(setMarkerJIP), [_logic], [
|
|
|
|
GETGVAR(allMapMarkers,[]),
|
|
|
|
GETGVAR(allMapMarkersProperties,[]),
|
|
|
|
_logic
|
|
|
|
]
|
2015-01-18 16:17:06 +00:00
|
|
|
] call EFUNC(common,targetEvent);
|