... thank you
BohbanSingh
@BohbanSingh
Posts
-
Open Mic Voice Chat -
Open Mic Voice ChatI found a way to make voice chat open mic... its a little buggy but it works. Download "AutoHotkey" and make a new "Ahk" script. I had chatgpt make the script so if anyone can tweak it that would be cool just reply to the post. Currently the script will allow keep your mic open and you can talk in voice chat but it occasionally turns off and you have to press "Capslock" again. YOU WILL NEED TO HAVE "Z" AS YOUR PUSH TO TALK BUTTON
AHK Sript:
#NoEnv
#SingleInstance Force
SetCapsLockState, AlwaysOffmicEnabled := false
CapsLock::
micEnabled := !micEnabledif (micEnabled)
{
SendInput {z down}
}
else
{
SendInput {z up}
}
return