PS4 CoD GHOST HoneyBadger Anti-Recoil Rapid Fire setting

The setting for the rapid fire has been adjusted for the Assault Rifle Honey Badger, the effect will cause the weapon to fire a tiny bit slower but will shoot flawlessly without any recoil (the rapid fire is set to R1 but can be changed to R2 in the script)
Version1.2
AuthorSammyto
Publish DateFri, 4 Jul 2014 - 22:46
Last UpdateFri, 4 Jul 2014 - 22:46
Downloads690
RATE


1

1

Release Notes: !!!!!works best with "GRIP and FOCUS"!!!!!!
Code: Select all
// GPC Online Library
// rapid_fire.gpc
 
define StartButton = PS4_R1;
 
 
main {if(get_val(PS4_R1)) combo_run(Rapidfire);
}
combo Rapidfire {
    set_val(PS4_R1, 100);
    wait(50);
    set_val(PS4_R1, 0);
    wait(50);
}