project-lambdamenu icon indicating copy to clipboard operation
project-lambdamenu copied to clipboard

Menus go invisble when you talk or players talk

Open xexdev opened this issue 6 years ago • 1 comments

Whenever someone would talk or I would talk lambda or another menu would disappear I found that this only happens when you have on Show Voice Chat Speaker

I was looking for a fix but couldn't find anything other then turning that off which is kind of essential

xexdev avatar Sep 23 '19 21:09 xexdev

Whenever someone would talk or I would talk lambda or another menu would disappear I found that this only happens when you have on Show Voice Chat Speaker

I was looking for a fix but couldn't find anything other then turning that off which is kind of essential

That would probably be fixed by moving the Show Voice Speakers to another thread, so do: scriptRegisterAdditionalThread(hInstance, showVoiceChatSpeakerThread);

inline void showVoiceChatSpeakerThread()
{
	for (;;)
	{
		if (showVoiceChatSpeakers)
		{
			showVoiceChatSpeakersOnline();
		}
		WAIT(0);
	}
}

Edit: I'd also be checking if I am online.

PulledResort avatar Mar 19 '21 06:03 PulledResort