Jump to content
Sign in to follow this  
champ-1

Weird sound bug

Recommended Posts

So there is this bug, I can't hear player firing his weapons when he's in single fire mode and this script running:

CH_fnc_player_init = {	
player removeWeapon "arifle_MXC_Holo_pointer_F";
player removeWeapon "hgun_P07_F";
player addMagazines ["30Rnd_65x39_caseless_mag_Tracer",6];
player addWeapon "arifle_MXC_Black_F";
player addMagazines ["30Rnd_9x21_Mag",2];
player addWeapon "hgun_P07_F";
};

if !(isDedicated) then {
waitUntil { !IsNull Player };
if (local player) then {
	waitUntil { time > 1 };

	[] spawn CH_fnc_player_init;

	player addEventHandler ["Respawn",{
		_unit = _this select 0;
		_corpse = _this select 1;

		[] spawn CH_fnc_player_init;
	}];
};
};

Basicly if I remove standart weapons of the unit and then add new one, I can't hear other players firing in single fire mode. He can here me firing primary weapon but not a pistol.

This is very weird. Can some on confim this or advice how to fix it?

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×