If you don't have a Cronus or similar gadget, this is not for you. Here is a totally
hands-off AFK Cronus script for this achievement. You just need to press one button!
Activate it by pressing

. Use it on the
Indianapolis Oval Circuit (not the reverse one). I think you should be able to use any car with this macro, but I used the
Porsche 917/30. (
TheIcemanCometh used the
Bugatti Veyron and seems to have better success with it. According to him you can change the throttle from "set_val(XB1_RT, 80)" to 100 in the script below)
The set up should be as follows:
Game Mode: Free Play
Vehicle Category: Invitational
Vehicle Class: Group 7 Specials
Grid Size: 1
Laps: 99
Make all 5 Events the same.
I have added some lines to the script that will
auto-start the next round for you after each 99 lap race. So, if you set up 5 events, the script will go through all 5 of them for you. It takes 3.6h per 99 laps and around 18h for all 5 events. You can entirely AFK the whole thing.
(go to sleep, go to work, hell... go on vacation) If you start the script before you go to bed and let it run through your workday, you'll get around
4-5% of your total achievement distance finished every day with the push of only one button.
The script will pull you to the right every few seconds so that you'll keep grinding the outside wall and don't end up crashing on the inside of the track. Speed is reduced to 80%, since at 100% you would end up bouncing off the wall weirdly after about 2 hours on the track.
int turbo = 0;
main {
if (event_press(XB1_X)) {
turbo = !turbo;
}
if (turbo) {
combo_run(Turbo_1);
} else {
combo_stop(Turbo_1);
}
}
combo Turbo_1 {
set_val(XB1_RT, 80);
wait(1800);
set_val(XB1_RT, 0);
wait(40);
set_val(XB1_LX, 80);
wait(200);
set_val(XB1_LX, 0);
wait(40);
set_val(XB1_A, 100);
wait(40);
set_val(XB1_A, 0);
wait(40);
}
If anyone has suggestions on how to improve the macro, I will gladly include them. According to the Xbox Live stats, this took me 350h.