
Easy way to get the grindy achievements.
Intro
I do not enjoy achievements which are grindy without any challenge, repetitive or force me to play bad. Therefore I worked on a script-based strategy to let this be done by a macro.
Here I explain how to use an auto clicker program to do the work for you.
These achievements are this guide’s target:






Flying Flips Star Truck Destruction Script
This script will unlock these achievements:

- Download and install AutoHotkey
- Create a .txt file, rename it to .ahk and edit it with NotePad++
- Insert the following code, save it and run the script by double clicking on it
; Start game, load level 1-8, no built ramps, get into drive mode and hit C on your keyboard.
c:: ; C starts macro
SetTimer Macro
return
v:: ; V stops macro
SetTimer Macro, Off
return
Macro: ; here the macro starts
Loop
{
Send {d down}
Sleep 3000 ; wait until ramp is reached
Send {Left down}
Sleep 10000 ; keep D and Left arrow down until exploded
Send {d up}
Send {Left up}
Sleep 1000
Send r ; pressing R will reload the level
Sleep 1000
}
- Start launcher, edit controls so that a is left d is right left arrow is left rotation and right arrow is right rotation

- Start game, load level 1-8, make sure no ramps are built or toggle every floor beam of your already built ramp into a structure beam by clicking on it, get into drive mode and hit C
- Now your digital programmed self will do the work for you and drive up the ramp, do some flips, collect a star and crash into the ground to destroy itself.
- Hitting V should stop the script, though it didn’t work for me. But the car does what we want and rides the track endlessly, you just have to stop it later by quitting the script via the AutoHotkey tray icon > right click > exit. If you have any suggestions how to make stopping the script by a button press work, I appreciate it!
- This script runs for 15 seconds and will grant you 1 star, 4 flips, 5 seconds airtime and 1 pickup truck destruction. So running this script 250 times for 62,5 minutes will grant you 250 stars, 1000 flips, 21 minutes of airtime and 250 pickup truck destructions. So this definitely should grant you Reach for the Stars, Feeling Dizzy and Insurance Nightmare. If Frequent Flyer did not unlock due to that you did not accumulate 40 minutes of airtime by playing the game properly, just let it run for longer.
Explosive Barrells and Destruction Points Script
This script will unlock these achievements:

Create another .ahk file with this code:
c:: ; C starts Macro
SetTimer Macro
return
v:: ; V stops Macro
SetTimer Macro, Off
return
Macro: ; here the macro starts
Loop
{
Send {d down}
Sleep 2000
Send {d up}
Sleep 400
Send {a down}
Sleep 500
Send {a up}
Send {Left down}
Sleep 1000
Send {d down}
Sleep 7000
Send {d up}
Send r ; pressing R will reload the level
Sleep 2000
}
- Run the script, start game, load level 3-3, make sure no ramps are built and hit C
- This script runs for 12.9 seconds and will grant you 1 second airtime, 7 red barrell destructions and 15000 destruction points per run. So running this script 67 times for 14.4 minutes will grant you 1,000,000 destructions points, 469 red barrell destructions and 1 minute of airtime. So this definitely should grant you Wanton Destruction and Explosives Expert. If Frequent Flyer still did not unlock then run the previous script in 1-8 for a little longer.
Be the first to comment