ps4 configuration help

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

ps4 configuration help

Postby apschisano » Sat Jan 09, 2016 10:11 pm

hi, how can i program the following for my ps4 controller:

triangle- rapid fire
circle- rapid fire
square- rapid fire
X- rapid fire

also, can i program a toggle where i can turn the rapid fire off/on?

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

Re: ps4 configuration help

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

I believe I replied an email from you, with same request. for the record here is the script I had send in reply:

Code: Select all
int toggle = TRUE;

main {
    if((get_val(PS4_L1) && event_press(PS4_CROSS)) || (get_val(PS4_CROSS) && event_press(PS4_L1))) {
        toggle = !toggle;
    }
    if(toggle) {
        if(get_val(PS4_CIRCLE)) combo_run(TurboCircle);
        if(get_val(PS4_TRIANGLE)) combo_run(TurboTriangle);
        if(get_val(PS4_SQUARE)) combo_run(TurboSquare);
        if(get_val(PS4_CROSS)) combo_run(TurboCross);
    }
}

combo TurboCircle {
    set_val(PS4_CIRCLE, 100);
    wait(50);
    set_val(PS4_CIRCLE, 0);
    wait(40);
    set_val(PS4_CIRCLE, 0);
}

combo TurboTriangle {
    set_val(PS4_TRIANGLE, 100);
    wait(50);
    set_val(PS4_TRIANGLE, 0);
    wait(40);
    set_val(PS4_TRIANGLE, 0);
}

combo TurboSquare {
    set_val(PS4_SQUARE, 100);
    wait(50);
    set_val(PS4_SQUARE, 0);
    wait(40);
    set_val(PS4_SQUARE, 0);
}

combo TurboCross {
    set_val(PS4_CROSS, 100);
    wait(50);
    set_val(PS4_CROSS, 0);
    wait(40);
    set_val(PS4_CROSS, 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 112 guests