mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
443 B
Plaintext
19 lines
443 B
Plaintext
// by commy2
|
|
#include "script_component.hpp"
|
|
|
|
private ["_rallypoint", "_side", "_position"];
|
|
|
|
_rallypoint = _this select 0;
|
|
_side = _this select 1;
|
|
_position = _this select 2;
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
private ["_marker", "_markerDate"];
|
|
|
|
_marker = _rallypoint getVariable [QGVAR(marker), ""];
|
|
_markerDate = _rallypoint getVariable [QGVAR(markerDate), ""];
|
|
|
|
_marker setMarkerPosLocal _position;
|
|
_marker setMarkerTextLocal _markerDate;
|