eletric_PS3_all_shootergames_controller_tuner

This is all shooter games like battlefield and call of duty keep in mind this is ps3 only xb 360 version will come out soon----This script includes these features---Rapid fire easy sprint dropshot quick scope hold breathe Join my discord for updates https://discord.gg/RfjCHp9rNZd
Version1.00
AuthorALIakbar
Publish DateThu, 14 Jan 2021 - 18:53
Last UpdateThu, 14 Jan 2021 - 18:53
Downloads147
RATE


1

0

Release Notes: initial launch
Code: Select all
 
main {
    if(get_val(PS3_R1)) {
        combo_run(Turbo_1);
    }
    if((get_val(PS3_LY)) < -95) {
        combo_run(Turbo_2);
    }
    if((get_val(PS3_R1)) && (get_ptime(PS3_R1)) <= 1500) {
        set_val(PS3_CIRCLE, 100);
    }
    if(event_press(PS3_L1)) {
        combo_run(Tap_3);
    }
}
 
combo Turbo_1 {
    set_val(PS3_R1, 100);
    wait(40);
    set_val(PS3_R1, 0);
    wait(30);
    set_val(PS3_R1, 0);
}
 
combo Turbo_2 {
    set_val(PS3_L3, 100);
    wait(40);
    set_val(PS3_L3, 0);
    wait(30);
    set_val(PS3_L3, 0);
}
 
combo Tap_3 {
    set_val(PS3_R1, 0);
    wait(400);
    set_val(PS3_R1, 100);
    wait(40);
    set_val(PS3_R1, 100);
}