turbo & autoheal

the script have turbo for all burst weapons and 1 shot weapons [ not shotguns ] auto heal will start after reloading have fun made by ExT
Version1
AuthorExT
Publish DateWed, 5 Dec 2018 - 18:14
Last UpdateWed, 5 Dec 2018 - 18:14
Downloads138
RATE


0

0

Code: Select all
// GPC Online Library
// black_ops_jiteer_amp_couch_spammer.gpc
 
//
// Script Made By
//                ExT
//----------------------------------------
//
//   turbo for deafult layout
//   autoheal will start after reloading
//   
//        ENJOY KILLING PEOPLE
//
//----------------------------------------
main {
    if((get_val(PS4_L2)) && (get_val(PS4_R2))) {
        combo_run(Turbo_1);
    }
    if((get_val(PS4_L2)) && (get_val(PS4_R2))) {
        combo_run(Turbo_2);
    }
        if(event_press(PS4_SQUARE)) {
        combo_run(auto_heal);
    }
}
 
combo Turbo_1 {
    set_val(PS4_R2, 100);
    wait(40);
    set_val(PS4_R2, 0);
    wait(30);
    set_val(PS4_R2, 0);
}
 
combo Turbo_2 {
    set_val(PS4_CIRCLE, 100);
    wait(40);
    set_val(PS4_CIRCLE, 0);
    wait(30);
    set_val(PS4_CIRCLE, 0);
}
combo auto_heal {
    set_val(PS4_L1, 0);
    wait(1000);
    set_val(PS4_L1, 100);
    wait(40);
    set_val(PS4_L1, 100);
}