electric_XB360_ALL_Shootergames

XB360 only for all shooter games---This script includes Rapid fire easy sprint dropshot quick scope hold breathe Join my discord for updates https://discord.gg/RfjCHp9rNZ
Version1.00
AuthorALIakbar
Publish DateThu, 14 Jan 2021 - 18:57
Last UpdateThu, 14 Jan 2021 - 18:57
Downloads112
RATE


2

0

Release Notes: initial launch
Code: Select all
 
main {
    if(get_val(XB360_RT)) {
        combo_run(Turbo_1);
    }
    if((get_val(XB360_LY)) < -95) {
        combo_run(Turbo_2);
    }
    if((get_val(XB360_RT)) && (get_ptime(XB360_RT)) <= 1500) {
        set_val(XB360_B, 100);
    }
    if(event_press(XB360_LT)) {
        combo_run(Tap_3);
    }
    if((get_val(XB360_LT)) >= 95) {
        set_val(XB360_LS, 100);
    }
}
 
combo Turbo_1 {
    set_val(XB360_RT, 100);
    wait(40);
    set_val(XB360_RT, 0);
    wait(30);
    set_val(XB360_RT, 0);
}
 
combo Turbo_2 {
    set_val(XB360_LS, 100);
    wait(40);
    set_val(XB360_LS, 0);
    wait(30);
    set_val(XB360_LS, 0);
}
 
combo Tap_3 {
    set_val(XB360_RT, 0);
    wait(400);
    set_val(XB360_RT, 100);
    wait(40);
    set_val(XB360_RT, 100);
}