ACE3/addons/respawn/functions/fnc_updateRallypoint.sqf

30 lines
660 B
Plaintext
Raw Permalink Normal View History

#include "..\script_component.hpp"
2015-09-26 14:26:41 +00:00
/*
* Author: commy2
* Updates marker position and texts.
*
* Arguments:
* 0: Marker <STRING>
* 1: Side <SIDE>
* 2: Position <ARRAY>
*
* Return Value:
* None
*
* Example:
* [marker_name, side ACE_Player, getPos ACE_Player] call ace_respawn_fnc_updateRallypoint
*
* Public: No
*/
2023-03-20 18:18:57 +00:00
params ["_rallypoint", "_side"];
private _position = param [2, getpos _rallypoint];
if (!hasInterface) exitWith {};
private _marker = _rallypoint getVariable [QGVAR(marker), ""];
private _markerDate = _rallypoint getVariable [QGVAR(markerDate), ""];
2015-04-15 18:50:03 +00:00
_marker setMarkerPosLocal _position;
_marker setMarkerTextLocal _markerDate;