mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
36 lines
799 B
Plaintext
36 lines
799 B
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Mutes the unit. It won't trigger auto generated chat messages either.
|
|
*
|
|
* Argument:
|
|
* 0: Unit (Object)
|
|
* 1: Reason to mute the unit (String)
|
|
*
|
|
* Return value:
|
|
* Nothing
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
PARAMS_2(_unit,_reason);
|
|
|
|
if (isNull _unit) exitWith {};
|
|
|
|
// add reason to mute to the unit
|
|
private "_muteUnitReasons";
|
|
_muteUnitReasons = _unit getVariable [QGVAR(muteUnitReasons), []];
|
|
|
|
if !(_reason in _muteUnitReasons) then {
|
|
_muteUnitReasons pushBack _reason;
|
|
_unit setVariable [QGVAR(muteUnitReasons), _muteUnitReasons, true];
|
|
};
|
|
|
|
private "_speaker";
|
|
_speaker = speaker _unit;
|
|
|
|
if (_speaker == "ACE_NoVoice") exitWith {};
|
|
|
|
["setSpeaker", [_unit, "ACE_NoVoice"]] call FUNC(globalEvent);
|
|
|
|
_unit setVariable ["ACE_OriginalSpeaker", _speaker, true];
|