Bridge Constructor Stunts

Bridge Constructor Stunts

Not enough ratings
How to get the grindfest achievements FAST
By Linkblade
Easy way to get the grindy achievements
   
Award
Favorite
Favorited
Unfavorite
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.
The End
I hope this helped. If you like this guide, please leave a thumbs up and let me know what achievement was the hardest for you to get. For me it was the airtime one (Frequent Flyer).
2 Comments
biTTy 11 May, 2024 @ 6:33am 
thanks, helpful
Megalania 5 Nov, 2022 @ 2:51am 
Nice tool! Since the Frequent Flyer achievement took quite a bit of time, I am glad it could be automated. I didn't know about AutoHotkey before and it might come in handy in the future.

And since you asked for suggestions on how to quit the script with a shortcut, here is the script I made and it worked for me (^ ist for Strg, so the shortcuts are Strg + Num0 etc.)
--------------------------------------------------------------
^Numpad0::Macro()

^Numpad1::Pause
^Numpad2::ExitApp

Macro() {
loop
{
Send {d down}
Sleep 12000
Send {d up}
Send {Enter}
Sleep 1000
}
}