PS4 Destiny Mida Multitool Rapid Fire on ADS w/ Anti Recoil on/off switch

Runs perfectly. I use 5 sensitivity so I have 30% to the Anti Recoil makes it near perfect. RapidFire runs without a hitch. Both only run when in ADS. Dpad up turns combos on with the LED Dpad down turns combos off as well as the LED Mida Multitool with this script is smooth as silk and a headshot machine. Last night I averaged about 2.0 k/d while I am usually around 1.2 regardless of weapon. This was in IB. Enjoy. Edit, I would probably drop the recoil to 25 as I find it tough to track jumpers while in ADS with all the downward force.
Version1.00
AuthorDestiny_70
Publish DateSat, 2 May 2015 - 14:56
Last UpdateSat, 2 May 2015 - 14:56
Downloads2434
RATE


8

6

Code: Select all
// Mida 200 RPM RapidFire w/ 30% AntiRecoil - only on ADS
// up on Dpad to enable combo's,  LED on
// down on Dpad to disable combo's, LED off
 
int Right_Stick;
int Enabled;
 
init {
    Enabled = TRUE;
}
 
main {
 
    if (event_press(PS4_UP)) { Enabled = TRUE; }
    if (event_press(PS4_DOWN)) { Enabled = FALSE; }
    if (Enabled) {
        set_led(LED_1,1);
        } else set_led(LED_1,0);
 
 
    if ((get_val(PS4_R2) > 0)  && (get_val(PS4_L2) > 0) &&  (Enabled))  {
        combo_run(RapidFire);
        } else combo_stop(RapidFire);
 
    if (combo_running(RapidFire)) {
        combo_run(AntiRecoil);
        } else combo_stop(AntiRecoil);
 
}
 
combo RapidFire {
 
    set_val(PS4_R2, 100);
    wait (150);
    set_val(PS4_R2, 0);
    wait (140);
}
 
combo AntiRecoil {
 
    Right_Stick = get_val(PS4_RY) + 30;
    if (Right_Stick > 100)
        Right_Stick = 100;
        set_val(PS4_RY,Right_Stick);
}