eletric_coldwar_script_PS4

PS4 cold war script with rapidfire+quickscope+dropshot. There is a version for this already published but for xbox. Check it out! This is my script that i have tested several times and has worked use it! i will make payed versions of these that have jitter+ massive aim assist They will cost £2.50 Join my discord for updates https://discord.gg/RfjCHp9rNZ
Version1.00
AuthorALIakbar
Publish DateThu, 14 Jan 2021 - 13:45
Last UpdateThu, 14 Jan 2021 - 13:45
Downloads541
RATE


1

0

Release Notes: initial publish
Code: Select all
 
 
main {
    if(get_val(PS4_R2)) {
        combo_run(Turbo_1);
    }
    if((get_val(PS4_R2)) && (get_ptime(PS4_R2)) <= 1500) {
        set_val(PS4_CIRCLE, 100);
    }
    if(event_press(PS4_L2)) {
        combo_run(Tap_2);
    }
}
 
combo Turbo_1 {
    set_val(PS4_R2, 100);
    wait(40);
    set_val(PS4_R2, 0);
    wait(30);
    set_val(PS4_R2, 0);
}
 
combo Tap_2 {
    set_val(PS4_R2, 0);
    wait(400);
    set_val(PS4_R2, 100);
    wait(40);
    set_val(PS4_R2, 100);
}