2015-09-26 18:45:19 +00:00
|
|
|
// by commy2
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
// unmute unit if that player disconnects
|
|
|
|
if (isServer) then {
|
|
|
|
addMissionEventHandler ["HandleDisconnect", {
|
|
|
|
[_this select 0, "isPlayer"] call EFUNC(common,unmuteUnit);
|
|
|
|
}];
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
|
2016-08-24 03:43:37 +00:00
|
|
|
// Handle early CBA_fnc_addPlayerEventHandler
|
|
|
|
if (!isNull ace_player) then {
|
|
|
|
[ace_player, "isPlayer"] call EFUNC(common,muteUnit);
|
|
|
|
};
|
|
|
|
|
2015-09-26 18:45:19 +00:00
|
|
|
// mutes/unmutes units when the player changes
|
2016-06-21 23:39:20 +00:00
|
|
|
["unit", {
|
2015-09-26 18:45:19 +00:00
|
|
|
params ["_newPlayer", "_oldPlayer"];
|
|
|
|
|
|
|
|
// mute the new player
|
|
|
|
[_newPlayer, "isPlayer"] call EFUNC(common,muteUnit);
|
|
|
|
|
|
|
|
// unmute the old player
|
|
|
|
if (alive _oldPlayer) then {
|
|
|
|
[_oldPlayer, "isPlayer"] call EFUNC(common,unmuteUnit);
|
|
|
|
};
|
2016-06-21 23:39:20 +00:00
|
|
|
}] call CBA_fnc_addPlayerEventHandler;
|