2015-04-15 17:18:42 +00:00
|
|
|
// by commy2
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-15 18:50:03 +00:00
|
|
|
private ["_rallypoint", "_side", "_position"];
|
2015-04-15 17:18:42 +00:00
|
|
|
|
|
|
|
_rallypoint = _this select 0;
|
|
|
|
_side = _this select 1;
|
2015-04-15 18:50:03 +00:00
|
|
|
_position = _this select 2;
|
2015-04-15 17:18:42 +00:00
|
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
|
|
|
private ["_marker", "_markerDate"];
|
|
|
|
|
|
|
|
_marker = _rallypoint getVariable [QGVAR(marker), ""];
|
|
|
|
_markerDate = _rallypoint getVariable [QGVAR(markerDate), ""];
|
|
|
|
|
2015-04-15 18:50:03 +00:00
|
|
|
_marker setMarkerPosLocal _position;
|
2015-04-15 17:18:42 +00:00
|
|
|
_marker setMarkerTextLocal _markerDate;
|