turn on/off rapid fire?

Titan One general support. Questions, firmware update, feature request.

turn on/off rapid fire?

Postby apschisano » Sun Jan 10, 2016 5:13 am

hi, can i program a button that turns off all other rapid fire inputs? a toggle between rapid fire and default?

thanks in advance!
User avatar
apschisano
Private First Class
Private First Class
 
Posts: 3
Joined: Sat Jan 09, 2016 10:09 pm

Re: turn on/off rapid fire?

Postby J2Kbr » Mon Jan 11, 2016 12:56 pm

Here is a example of how you can implement that (Toggle rapidfire with DPad UP + R2);

Code: Select all
int toggle = TRUE;

main {
    if(get_val(PS4_UP) && event_press(PS4_R2)) {
        toggle = !toggle;
    }
    if(toggle) {
        if(get_val(PS4_R2)) combo_run(Rapidfire);
    }
}

combo Rapidfire {
    set_val(PS4_R2, 100);
    wait(50);
    set_val(PS4_R2, 0);
    wait(40);
    set_val(PS4_R2, 0);
}
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm


Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 107 guests