dropshot + rapidfire

this is my first script for ps4 hope you guys enjoy it as much as I do there is more to come
Version1.0
Authorcreepyspace
Publish DateSun, 22 Jan 2017 - 06:00
Last UpdateSun, 22 Jan 2017 - 06:00
Downloads556
RATE


3

0

Release Notes: that I know of it only works on ps4 but try it out and let me know if it works on other consoles
Code: Select all
// my first mod
// dropshot + rapidfire
// Sun Jan 22 2017 00:30:07
// author: creepyspace
// platform: PS4
// controller: PS4
// game: COD series
//----------------------------------------
 
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);
    }
}
 
combo Turbo_1 {
    set_val(PS4_R2, 100);
    wait(40);
    set_val(PS4_R2, 0);
    wait(30);
    set_val(PS4_R2, 0);
}