Created
April 26, 2021 10:28
-
-
Save blubbll/8c2d90b16672d910dcbc28059149bb2a to your computer and use it in GitHub Desktop.
vrc-fpsfix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set oShell = CreateObject("WScript.Shell") | |
Do while True | |
If oShell.AppActivate("VRChat") Then | |
' restore | |
oShell.SendKeys "% r" | |
' minimize | |
oShell.SendKeys "% n" | |
Wscript.Sleep(5 * 60 * 1000) 'wait 5 min between applying | |
Else Wscript.Sleep(10 * 60 * 1000) 'prog not found, wait 10 minutes | |
End If | |
Loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment