ACE3/addons/interaction/functions/fnc_joinTeam.sqf
Broström.A | Evul 028a0cb3f0 Changed: Scripted calls to putInEarPlugs/joinTeam won't show hint (#7400)
* Added ability to suppress hint message

* Adjustments based on request
2020-01-09 14:40:34 -06:00

38 lines
839 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]]];
["CBA_teamColorChanged", [_unit, _team]] call CBA_fnc_globalEvent;
// display message
if (_unit == ACE_player) then {
private _message = "";
if (_team == "MAIN") then {
_message = localize LSTRING(LeftTeam);
} else {
_team = localize format [LSTRING(Team%1), _team];
_message = format [localize LSTRING(JoinedTeam), _team];
};
if (_displayHint) then {
[_message] call EFUNC(common,displayTextStructured);
};
};