MLB 15 The Show Double Play Challenge script

To use it press x once and it will automatically do the challenge for you
Version1.00
Authorsuperstarr98
Publish DateWed, 22 Jul 2015 - 15:05
Last UpdateWed, 22 Jul 2015 - 15:05
Downloads26
RATE


0

0

Code: Select all
int RapidFireON;
 
main {
    if (event_press(PS4_CROSS)) { RapidFireON = !RapidFireON; }
    if (RapidFireON) { combo_run(RapidFire); }
}
 
combo RapidFire {
    set_val(PS4_CROSS, 100);
    wait(30);
    set_val(PS4_CROSS, 0);
    wait(20);
}