Page 1 of 2

Project Cars Auto Clutch HEP Please

PostPosted: Sat Aug 29, 2015 10:19 pm
by TVRacing7818
Hello guys looking for someone who can create or help me create for this matter. I am VERY VERY new to still. I do alot of racing games but use the manual but want to see if i can get the clutch to be auto engaged when i shift up and down. Any help will be very much appreciated. Thanks Guys My PSN is TVRacing7818

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 1:16 am
by Elvish
Sounds reasonable. What button is used to engage the clutch and what buttons are used to shift up and down?

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 4:28 am
by TVRacing7818
I use circle to shift up and x to shift down

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 4:31 am
by Elvish
The clutch has to be engaged before shifting, right? I need to know what button engages the clutch as well

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 4:32 am
by TVRacing7818
PS4 lol I hate being the new guy asking a bunch of questions but if you dont ask then you will never know

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 4:35 am
by TVRacing7818
L1 for the clutch

Re: Project Cars Auto Clutch HEP Please

PostPosted: Sun Aug 30, 2015 4:41 am
by Elvish
Give this a shot:
Code: Select all

main {
    if(event_press(PS4_CROSS)){
        combo_run(Shift_Down);
    }
    if(event_press(PS4_CIRCLE)){
        combo_run(Shift_Up);
    }
}

combo Shift_Up
{
    set_val(PS4_CIRCLE, 0);
    set_val(PS4_R1, 100);
    wait(100);
    set_val(PS4_CIRCLE, 100);
    wait(100);
    set_val(PS4_CIRCLE, 0);
    wait(100);
    set_val(PS4_R1, 0);
}

combo Shift_Down
{
    set_val(PS4_CROSS, 0);
    set_val(PS4_R1, 100);
    wait(100);
    set_val(PS4_CROSS, 100);
    wait(100);
    set_val(PS4_CROSS, 0);
    wait(100);
    set_val(PS4_R1, 0);
}

Re: Project Cars Auto Clutch HEP Please

PostPosted: Mon Aug 31, 2015 11:18 pm
by TVRacing7818
thanks ma it woks perfect
!!!!!!!

Re: Project Cars Auto Clutch HEP Please

PostPosted: Tue Sep 01, 2015 12:49 am
by perfecthuntr
Nice job, @Elvish. Thanks for helping out!

Re: Project Cars Auto Clutch HEP Please

PostPosted: Tue Sep 01, 2015 2:41 am
by Elvish
No worries! Would you like to fine tune this at all TVRacing7818? It works, but we can make it work more quickly I am sure.