Hey there, this is my first post. Just want to share how I leave my game client open without logging out of the game.
I use autohotkey and placed this in my script. (if you don't know what autohotkey is just GOOGLE it)
To enable press F1 and press ESC to quit.F1::
StopLoop := False
Loop,
{
ToolTip, %A_Index%
SetKeyDelay, 0, 180000
Send, {space}
if StopLoop
break
}
return
Esc::
StopLoop := True
return
This will press spacebar every 3 mins when you are not around. Avoiding the AFK status.
Hope it works for you.