mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
464 B
Plaintext
26 lines
464 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;
|