Menus go invisble when you talk or players talk
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
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.