ACE3/addons/noradio/XEH_postInit.sqf

30 lines
769 B
Plaintext
Raw Normal View History

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
["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);
};
}] call CBA_fnc_addPlayerEventHandler;