On Rusty Trails

On Rusty Trails

Not enough ratings
No-pain Weltmeister achievement (keyboard macro)
By the joggler [SCRAPTV]
100% completion of this game is fairly straightforward - save for the Weltmeister achievement. If you are like me and went out of your way to wrap up everything else to do in this game in one playthrough, it is likely this will be the last Steam achievement you go for. I was about ~5000 jumps away from getting it, and I *really* didn't want to go through the pain of sitting down and grinding it. So, i'm giving out my own solution to anyone else who doesn't want to deal with the grind and hasn't/can't figure out how to set their own keyboard macros.
   
Award
Favorite
Favorited
Unfavorite
The download
I created a simple keyboard macro with AutoHotKey that repeats jumps, and toggles on with the
' = ' key. If you would like a direct download of it, I've left the executable and a README with basic instructions on this Google Drive link: https://drive.google.com/drive/folders/1AIVH5Pjx645MDKS5EoIJkBNq2Q0Hkuod?usp=sharing

Once you have it, start in any level with a secret and toggle the script to automate jumping. BlaXpirit made a list of all secrets in this guide; I chose Suburbs 9 for convenience's sake.

TOO SCARED TO DOWNLOAD FILES OFF THE INTERNET? RECONSTRUCT THE CODE YOURSELF!
I used AutoHotKey to create the script, which is built in C++. If you'd like to copy+paste my code and make the .exe yourself, do so here:
https://www.autohotkey.com/

Below is the code I made. Modify it as you please.
=::{ while (GetKeyState("Space") ^ GetKeyState("=")) { Send "{Space up}" Sleep 10 Send "{Space down}" Sleep 90 } return }