Perfect Vermin

Perfect Vermin

Not enough ratings
AHK reset script
By tatu141
after 20 or so failed attempts at the speedrun achievement i got a quick AHK reset scrip working for the game, just hits esc > menu > start.
(and then ofc i get the achievement on the 3rd attempt)
   
Award
Favorite
Favorited
Unfavorite
the meat of it
make sure to install autohotkey from legit sources
to create the script
just copy paste the following into a text editor of your choice (i use notepad++). then save as> perfect vermin reset.ahk. place the created file into the ahk folder. ready by double clicking the file.

; starts: f1
; does: hits Esc. clicks menu > start

F1::
{
Send, {Esc}
Sleep, 100
CoordMode, Mouse, Relative
Click, 694, 471
Sleep, 50
Click, 198, 413
return
}