I got bored and wrote this macro while waiting for the servers to come back up. It closes the Instruction message and then right clicks. Just put your mouse over the enter button and run. Pressing the x key should cancel the macro. It's an autohotkey macro, heres the code:
Loop
{
GetKeyState, state, x
if state = D ; The key has been released, so break out of the loop.
break
IfWinExist, Instruction
{
WinClose, Instruction
Sleep, 500
MouseClick, left
}
}
Loop
{
GetKeyState, state, x
if state = D ; The key has been released, so break out of the loop.
break
IfWinExist, Instruction
{
WinClose, Instruction
Sleep, 500
MouseClick, left
}
}