anyone have some smart way of exiting sdvx? I try starting it via ahk but the esc button dosent work from in game it seems
#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.
#SingleInstance force
run,asphyxia.exe
runwait, ArcCabView_Launcher.exe
2:: ;Key for AUTOLOGIN WITH CARD send backspace key + key + yes on message
{
Send {Backspace}
Sleep 6000
Send, 0
Sleep 150
Send, 0
Sleep 150
Send, 3
Sleep 150
Send, 1
Sleep 6000
Send {r down}
Sleep 1000
Send {r up}
Sleep 1000
Send {1 down}
Sleep 1000
Send {1 up}
}
return
Esc::
{
Process, Close, asphyxia.exe
Run,taskkill /im "asphyxia.exe" /F
Process, Close, spice.exe
Run,taskkill /im "spice.exe" /F
exitapp
} return