【原神configuration】啟動時出現(xiàn)的頁面,暫不知如何穩(wěn)定打開此頁面

;個人使用的autohotkey代碼(原神F綁定到鼠標側(cè)鍵等,要管理員權(quán)限運行方可在原神生效)
#NoEnv ?; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ?; Enable warnings to assist with detecting common errors.
SendMode Input ?; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ?; Ensures a consistent starting directory.
; Shift + Space -> Space
+Space::Send {Space}
; F5 -> Ctrl + F5
F5::^F5
; Fast PrintScreen
PrintScreen::Send, #{PrintScreen}
; Fast PrintScreen
#PrintScreen::Send, {PrintScreen}
; Browser_Forward -> Browser_Forward + F(repeat per 170 sec)
$XButton2::
Send, {XButton2}
Loop
{
? ? GetKeyState, State, XButton2, P ; 獲取物理狀態(tài)
? ? If (State = "U")
? ? {
? ? ? ? Break
? ? }
? ? Else
? ? {
? ? ? ? Send, f
? ? ? ? Sleep, 170
? ? }
}
Return