Jump to content

Recommended Posts

Hello everyone,

 

I've got a little problem. When i'm playing a mission with my friends, i can see a kind of counter with the number of kills of my friends.

 

Do you know how can i remove this ?

  • Like 1

Share this post


Link to post
Share on other sites

 

1 hour ago, reapertitanium said:

Do you know how can i remove this ?

 

To disable the table score , 

if you mean this:

add this to your initplayerlocal.sqf or init.sqf

//_____________________________ Disable Score Table _____________________________
//In case of task force Radio , chang keybind to Ctrl + O , Alt + O , Shift + O , instead of P

(findDisplay 46) displayAddEventHandler
[
	"KeyDown",
	{
		_handled = false;
		if ((_this select 1) in actionKeys "networkStats") then
		{
			_handled = true;
		};
		_handled;
	}
];

 

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

×