ℹ️ If you press all answers at the same time you will always be correct, meaning you can script everything. You still have to switch quizzes manually, but the same script is applicable to all game modes. For Detonations game mode you will have to stop the script after reaching 50+ correct answers and let the timer run out.
⚙️ Go into the settings and set "Typewriter" to either "Fast" or disable it entirely (both seem to work the same way).
⌨️ The script:
#Requires AutoHotkey v2.0
SetKeyDelay -1, -1
ListLines 0
ProcessSetPriority "High"
global running := false
F1:: {
global running
if (running)
return
running := true
while (running) {
Send "{a Down}{b Down}{c Down}{d Down}{e Down}"
Sleep 20
Send "{a Up}{b Up}{c Up}{d Up}{e Up}"
Sleep 20
Send "{Enter}"
Sleep 50
if (!running)
break
}
}
F2:: {
global running
running := false
}