3 round burst fire and rapid fire

3 round burst fire and rapid fire from shooters to be use with semi-auto in game guns.
Version1.00
Authorneb
Publish DateTue, 1 Jul 2014 - 20:18
Last UpdateWed, 2 Jul 2014 - 11:59
Downloads388
RATE


1

0

Release Notes: this one works tested it works.
Code: Select all
define StartButton = PS4_R2;
 
 
main {if(get_val(PS4_R2)) combo_run(Burstfire);
}
combo Burstfire {
    set_val(PS4_R2, 100);
    wait(35);
    set_val(PS4_R2, 0);
    wait(35);
    set_val(PS4_R2, 100);
    wait(35);
    set_val(PS4_R2, 0);
    wait(35);
    set_val(PS4_R2, 100);
    wait(35);
    set_val(PS4_R2, 0);
}