need help will pay

GPC2 script programming for Titan Two. Code examples, questions, requests.

need help will pay

Postby killino » Sun Dec 16, 2018 12:07 am

hi everyone

I need a simple script made and I cannot find a good tutorial. So, maybe somebody can make one for me I don't mind paying something reasonable through PayPal.

I have a neurological issue so I cannot use my right thumb. I want to play NHL 19 with my friends on Xbox one. so below is what I need. I basically want to like a game pack where I can just drop it into a slot and it will work.

when i press X do a hip check this is done by Press right stick and left button at the same time. Hold one second

when i press B check/shot this is done using the right stick pull back hold 1 seconds then forward hold .25 seconds

I will probably need more in the future if this works I will contact the same person. I will not mind paying for those in the future as well.

Thank you,

Robert
User avatar
killino
Sergeant
Sergeant
 
Posts: 6
Joined: Sat Mar 12, 2016 12:30 am

Re: need help will pay

Postby Buffy » Sun Dec 16, 2018 9:41 am

Try this:

Code: Select all
#include <xb1.gph>

main {
   
    if(event_active(XB1_X)) {
        combo_run(hip_check);
    }
    else if(event_active(XB1_B)) {
        combo_run(check_shot);
    }
}

combo hip_check {
    set_val(XB1_RS, 100);
    set_val(XB1_LEFT, 100);
    wait(1000);
}

combo check_shot {
    set_val(XB1_LY, 100);
    wait(1000);
    set_val(XB1_LY, -100);
    wait(250);
}
ConsoleTuner Support Team || Discord || Custom Scripts
User avatar
Buffy
Lieutenant
Lieutenant
 
Posts: 422
Joined: Wed Jul 20, 2016 5:23 am

Re: need help will pay

Postby killino » Mon Dec 17, 2018 3:30 pm

I will try this tonight thank you
User avatar
killino
Sergeant
Sergeant
 
Posts: 6
Joined: Sat Mar 12, 2016 12:30 am


Return to GPC2 Script Programming

Who is online

Users browsing this forum: No registered users and 210 guests

cron