ACE3/addons/respawn/functions/fnc_teleportToRallypoint.sqf

48 lines
1.2 KiB
Plaintext
Raw Normal View History

/*
Name: ACE_Respawn_fnc_teleportToRallypoint
Author(s):
commy2
Description:
teleports a unit to a rallypoint
Parameters:
0: OBJECT - unit
1: OBJECT - side
2: BOOLEAN - teleport to base
Returns:
VOID
*/
#include "script_component.hpp"
2015-01-12 09:07:03 +00:00
private ["_unit", "_side", "_toBase", "_rallypoint"];
_unit = _this select 0;
_side = _this select 1;
_toBase = _this select 2;
2015-01-12 09:49:21 +00:00
// rallypoint names are defined in CfgVehicles.hpp
2015-01-12 09:07:03 +00:00
_rallypoint = ([
[
objNull,
2015-01-12 09:49:21 +00:00
missionNamespace getVariable ["ACE_RallypointExit_West", objNull],
missionNamespace getVariable ["ACE_RallypointExit_East", objNull],
missionNamespace getVariable ["ACE_RallypointExit_Independent", objNull]
2015-01-12 09:07:03 +00:00
],
[
objNull,
2015-01-12 09:49:21 +00:00
missionNamespace getVariable ["ACE_Rallypoint_West", objNull],
missionNamespace getVariable ["ACE_Rallypoint_East", objNull],
missionNamespace getVariable ["ACE_Rallypoint_Independent", objNull]
2015-01-12 09:07:03 +00:00
]
] select _toBase) select ([west, east, independent] find _side) + 1;
if (isNull _rallypoint) exitWith {};
_unit setPosASL (getPosASL _rallypoint);
2015-01-12 09:49:21 +00:00
[[localize "STR_ACE_Respawn_TeleportedToRallypoint", localize "STR_ACE_Respawn_TeleportedToBase"] select _toBase] call EFUNC(Core, displayTextStructured);