Cricket 24
26 Achievements
1,000
15-20h
Xbox One
Xbox Series
Over and Over Again
Bowled 500 overs across all game modes
80
3.26%
How to unlock the Over and Over Again achievement in Cricket 24 - Definitive Guide
First go to cricket academy and match designer and create a new match mode. Set wickets to 10, days to 1 and no.of innings per team to 1. Most importantly set the No of balls per over to 3. The max overs per day can be set to as u see fit, I leave it at 100 as it is. The rest of the options doesn’t matter. Save to whatever name you see fit. I named it Threes.
Now go to play now fro main menu. Pick any teams u like. Make sure to edit match and change the match type to what was created above. Make sure to bowl first and start bowling(grinding). With just 3 balls per over it should go fast. Even faster with spinners at both ends. Just keep bowling a little off the stumps. Repeat as necessary. Caution: this doesn’t appear to work with two controllers. Need to play against AI
Now go to play now fro main menu. Pick any teams u like. Make sure to edit match and change the match type to what was created above. Make sure to bowl first and start bowling(grinding). With just 3 balls per over it should go fast. Even faster with spinners at both ends. Just keep bowling a little off the stumps. Repeat as necessary. Caution: this doesn’t appear to work with two controllers. Need to play against AI
1 Comment
+1 great find to change format to 3 balls per over.
Personally I'm using 2 spinners, bowling short balls to avoid the stumps. I made my format 100 overs a day over 5 days to ensure I could just let it run for one whole match.
Idle boosting: Brook wingman converter + xbox 360 street fighter turbo pad on the A button (on xbox one).
Personally I'm using 2 spinners, bowling short balls to avoid the stumps. I made my format 100 overs a day over 5 days to ensure I could just let it run for one whole match.
Idle boosting: Brook wingman converter + xbox 360 street fighter turbo pad on the A button (on xbox one).
By Shadow of Skitz on 02 Aug 2024 11:36
To add on to the above solution (brilliant to change the balls per over to 3), this can be automated with a turbo controller if you have one. I pulled out my trusty Hori, went to cloud gaming, and ran it like that, but you could do the same with a Cronus Zen or something similar.
Make sure to pick spinners for both bowlers. Tapping A repeatedly doesn't work if they have a run up, but it works with spinners. Start the game, then turbo the A button. Once the 100 overs are over or your team gets 10 wickets, restart the game and keep going.
Either this or press A 1500 times. In both cases, this is a grind that makes me not want to play cricket anymore. 😞
Make sure to pick spinners for both bowlers. Tapping A repeatedly doesn't work if they have a run up, but it works with spinners. Start the game, then turbo the A button. Once the 100 overs are over or your team gets 10 wickets, restart the game and keep going.
Either this or press A 1500 times. In both cases, this is a grind that makes me not want to play cricket anymore. 😞
For cronus users:
// Over and Over Again achievement in Cricket 24
// author: dubdeetwothree
// Go to cricket academy and match type designer and create a new match mode
// Set wickets to 10, days to 1 and no.of innings per team to 1
// Most importantly set the No of balls per over to 3. The max overs per day at 100
// Save it as Threes
//
// Now select Play Now from the main menu, pick any teams but change match type to Threes
// Select a spinner to bowl at each end then start the script
// 100 overs will take roughly an hour, stop script and create a new match
int bowl;
main {
if (event_press(XB1_LB)) {bowl = !bowl;} // Start cycle with LB
if (bowl) {combo_run(bowl);}
if (!bowl) {combo_stop(bowl);}
}
combo bowl {
set_val (XB1_A, 100);
wait (1000);
set_val (XB1_A, 0);
wait (1000);
}
// author: dubdeetwothree
// Go to cricket academy and match type designer and create a new match mode
// Set wickets to 10, days to 1 and no.of innings per team to 1
// Most importantly set the No of balls per over to 3. The max overs per day at 100
// Save it as Threes
//
// Now select Play Now from the main menu, pick any teams but change match type to Threes
// Select a spinner to bowl at each end then start the script
// 100 overs will take roughly an hour, stop script and create a new match
int bowl;
main {
if (event_press(XB1_LB)) {bowl = !bowl;} // Start cycle with LB
if (bowl) {combo_run(bowl);}
if (!bowl) {combo_stop(bowl);}
}
combo bowl {
set_val (XB1_A, 100);
wait (1000);
set_val (XB1_A, 0);
wait (1000);
}