BO2 FAL OSW Rapid FIre

Title says it all. Toggle: RT + Right D-Pad Rumble upon toggle
Version1
AuthorValant
Publish DateMon, 11 Apr 2016 - 00:03
Last UpdateMon, 11 Apr 2016 - 00:03
Downloads755
RATE


1

0

Release Notes: Recorded my modded controller adjustable settings with Combo Magick and put it into a macro you can toggle :)
Code: Select all
/////////////////////////////////////////////////
// COD Bo2 FALFire Mod                        //
// Console PS3/XB360                         //
// By:JaggedDiamond                         //
//                                         //
// Toggle: RT + Right D-Pad - RumbleNotify//
// This was optimized from my personal   //
// modded controller. Recorded with     //
// Combo Magick                        //
////////////////////////////////////////
 
int falfire_ONoff    = FALSE;
 
//Console; XB360/PS3
 
main {
    if((event_press(XB360_RT) && get_val(XB360_RIGHT)) || (event_press(XB360_RIGHT) && get_val(XB360_RT))){           // Turns ON/OFF falfire
        falfire_ONoff = !falfire_ONoff;
        if(falfire_ONoff) combo_run(RumbleNotifier);
        }
if(falfire_ONoff && get_val(XB360_RT)){combo_run(falfire)}
}
 
// If R2 is pressed, FALFire will run//
 
combo
falfire{
set_val(XB360_RT, 100);
wait(60);
set_val(XB360_RT, 0);
wait(60);
}
 
combo RumbleNotifier {
    set_rumble(RUMBLE_A, 100);
    wait(200);
    reset_rumble();
}