AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome

AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome

Not enough ratings
How to reach 4096 jumps: The Easy Way™️
By Blinky
The achievement "I Avoid Sleep Wherever Possible, So I Played AaaaaAAaaaAAAaaAAAAaAAAAA!!! a Whole Lot", which requires you to reach a total of 4096 jumps, is easily the most time consuming achievement in this game, and the most tedious as well. I came up with a way to get it easily, and would like to share it with anyone who still needs this forsaken achievement.
   
Award
Favorite
Favorited
Unfavorite
Foreword
Now, before we begin, you'll need a few things:
  • AutoHotkey downloaded on your pc.
  • Notepad++ to edit the script [NOT MANDATORY]
  • Between 2 and 7 hours for your pc to idle.

AutoHotkey is a program that allows you to create scripts to use on your pc. This includes stuff like making an auto clicker, or loops of button presses for simple things. Very handy to have, and will be used here.

Also, no that amount of time is not a mistake. The script we will make will still need a few hours to get all the jumps you need, depending on how many you already have (which you cannot check afaik). I said this method was easy, not fast. The Easy Way™️ needs time to work its magic.
The Easy Way™️
Now that you have AutoHotkey installed, you'll need to create a pretty simple script. Just create a new script (like you'd make a new text file) and paste this code into it:

#MaxThreadsPerHotkey 3 ^j:: Toggle := !Toggle Loop { If (!Toggle) Break Send, {Up down} Sleep, 500 Send, {Up up} Sleep, 3000 Send, {Space down} Sleep, 10 Send, {Space up} Sleep, 1500 Send, {r down} Sleep, 10 Send, {r up} Sleep, 1000 } Return Escape:: ExitApp Return

Your script should look like this:
(those 4 lines at the top aren't really necessary)

Here's what The Easy Way™️ does: By executing it, it becomes available. It is activated by pressing Ctrl+j (you can change the "^j" on the code to whichever letter key you want). After activated, it will press up for half a second to walk off the starting platform, release up, wait 3 seconds and press Space to release the parachute, release space, wait 1 and a half seconds and then press r to restart the level, wait 1 second and finally loop back to the start. To deactivate the script, you press Escape. This stops the loop and disables it completely. You'll have to execute it once more to use it again.

As for the level where you'll use The Easy Way™️ on, it's the level "Smear Campaign Where You Are The Smear."

How to use it:
Execute the script file, then select the level. After the game loads, press Ctrl+j, and the game will start to act by itself. Leave the game open for however long you need to in order to get the achievement. Press Esc once your done, or to stop for the session/day. I got the achievement while afk with this script, so I can confirm the game does count those jumps.
Stats and conclusion
The Easy Way™️ takes slightly more than 5,5 seconds per jump. This gives the following rates:
  • 10,9 jumps/minute.
  • 654 jumps/hour.
  • 1,5 hours for 1000 jumps.
I needed to use The Easy Way™️ for around 5 hours total, so I still needed around 3300 jumps before starting to grind for the achievement.

Also here's how all of your jumps should look like, stats wise:

The level I chose is likely not the fastest for jumps. Since you don't have a score requirement for completing a jump, I'm sure there are levels with even closer first obstacles. Feel free to try and improve The Easy Way™️, let me know if you succeed!

Thanks for reading and I hope this helps someone!
1 Comments
Inj3ct0r 21 Jul, 2024 @ 6:29pm 
Worked like a charm, I suggest adding a counter to keep track of how many loops the code has completed, it is displayed as a tooltip right next to the mouse cursor.

LoopCount := 0

Loop
{
If (!Toggle)
Break
LoopCount++
ToolTip, Loop count: %LoopCount%

... ; Rest of code
}