Start Shooting Sooner

Now when you pull the RT button it shoots as soon as it is = to 1. So its instant.
Version2.0
AuthorSaint
Publish DateSat, 10 May 2014 - 23:08
Last UpdateSun, 11 May 2014 - 17:39
Downloads793
RATE


4

1

Release Notes: Now when you pull the RT button it shoots as soon as it is = to 1. So its instant.
Code: Select all
//Now when you pull the RT button it shoots as soon as it is = to 1.
//So its instant.
 
define y = 4000;
 
main {
    if(get_val(XB1_RT)>=1)
    combo_run(Shoot);
    else if(combo_running(Shoot))
    {combo_stop(Shoot);}
}
combo Shoot {
    set_val(XB1_RT, 100);
    wait(y);
}