ACE3/addons/interaction/functions/fnc_joinTeam.sqf
PabstMirror 884ae78704
Interaction - Add remote squad management (#10258)
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-08-27 18:30:06 -03:00

30 lines
648 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Unit joins a fire team.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Team <STRING>
* 2: Display hint <BOOL> (default: false)
*
* Return Value:
* None
*
* Example:
* [player, "YELLOW", false] call ace_interaction_fnc_joinTeam
*
* Public: No
*/
params ["_unit", "_team", ["_displayHint", false, [false]]];
_unit assignTeam _team;
// display message
if (_displayHint && {_unit == ACE_player}) then {
private _team = localize format ["str_team_%1", _team];
private _message = format [LLSTRING(JoinedTeam), _team];
[_message] call EFUNC(common,displayTextStructured);
};