Request a golf club game pack for xbox one

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

Request a golf club game pack for xbox one

Postby bigbubba7373 » Tue Apr 21, 2015 2:26 pm

hello I would like to Request a golf club game pack for xbox one with perfect swing and maybe an auto shot adjust for lie and whatever else you can come up with for the golf club thanks
User avatar
bigbubba7373
Staff Sergeant
Staff Sergeant
 
Posts: 10
Joined: Tue Apr 21, 2015 2:24 pm

Re: Request a golf club game pack for xbox one

Postby J2Kbr » Tue Apr 21, 2015 2:49 pm

For gamepacks requests please utilize this topic: viewtopic.php?f=5&t=122

It help us keep track of all requests! :)

At the moment we don't have plans to make a Gamepack for Golf Club. What we can do is start making a custom script for you and it gets mature enough, make it available as a Gamepack!

The Perfect Swing is just a matter of lock the horizontal movement at 0 right?, the script below should do this trick:

Code: Select all
main {
    // Perfect Swing
    set_val(XB1_LX, 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

Re: Request a golf club game pack for xbox one

Postby bigbubba7373 » Wed Apr 29, 2015 3:46 pm

thanks J2Kbr works great also i use the right stick so

Code: Select all
main {
    // Perfect Swing
    set_val(XB1_RX, 0);
}
User avatar
bigbubba7373
Staff Sergeant
Staff Sergeant
 
Posts: 10
Joined: Tue Apr 21, 2015 2:24 pm

Re: Request a golf club game pack for xbox one

Postby J2Kbr » Thu Apr 30, 2015 12:39 pm

Cool!! :) I'm glad to help!
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Request a golf club game pack for xbox one

Postby ZzrusmanzZ » Fri Feb 16, 2018 10:17 pm

I am recently handicapped enjoy The Golf Club 2 on xbox 1 and need a script that takes care of the tempo and perfect swing.I have perfect swing already but won't help tour clubs or standard on tempo(how fast you pull back and push forward) can you help with a script that will take care of both? will leave Email [email protected] in case you can. Thank you! :innocent_smile_1:
User avatar
ZzrusmanzZ
Corporal
Corporal
 
Posts: 5
Joined: Fri Feb 16, 2018 9:59 pm

Re: Request a golf club game pack for xbox one

Postby J2Kbr » Sun Feb 18, 2018 4:05 pm

Please give more detail on how you plan to adjust the time for the pull back and push forward? it can be just a number that you can set in the script code?
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Request a golf club game pack for xbox one

Postby ZzrusmanzZ » Mon Feb 19, 2018 5:01 pm

I don't play tournaments or for money. Lets be clear!I love golf pull back and push forward.Very fast very slow is bs when you have perfect perfect with tour clubs.all I am asking for is a script that does both .Perfect swing and the perfect tempo or speed back and forth.So I can get perfect swing 100% can't get 100% on tempo for standard or tour clubs. Don't need pefect putt just want to be competitive again.
User avatar
ZzrusmanzZ
Corporal
Corporal
 
Posts: 5
Joined: Fri Feb 16, 2018 9:59 pm

Re: Request a golf club game pack for xbox one

Postby ZzrusmanzZ » Mon Feb 19, 2018 5:04 pm

Juat remember I am handicapped it took me a half hour to type this! :shocked:
User avatar
ZzrusmanzZ
Corporal
Corporal
 
Posts: 5
Joined: Fri Feb 16, 2018 9:59 pm

Re: Request a golf club game pack for xbox one

Postby J2Kbr » Tue Feb 20, 2018 10:17 am

Not sure how well this script will perform, but it will automatically swing the right analog stick by right stick press down, using the times set in the defines at the beginning of the code, you may need adjust these values.
Code: Select all
define BACKWARD_TIME    = 800;
define FORWARD_TIME     = 1200;
 
main {
    // Perfect Swing
    set_val(XB1_RX, 0);
 
    // Auto Swing
    if(event_press(XB1_RS)) {
        combo_run(AutoSwing);
    }
    if(combo_running(AutoSwing)) {
        set_val(XB1_RS, 0);
        set_val(XB1_RX, 0);
        set_val(XB1_RY, 0);
    }
}
 
combo AutoSwing {
    set_val(XB1_RY, -100);
    wait(BACKWARD_TIME);
    set_val(XB1_RY, 100);
    wait(FORWARD_TIME);
}
 
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Request a golf club game pack for xbox one

Postby ZzrusmanzZ » Tue Feb 20, 2018 4:55 pm

Thanks I will mess with values I tried remapper and got the swing but not the values so thank you.I worked on it for hours. :innocent_smile_1:
User avatar
ZzrusmanzZ
Corporal
Corporal
 
Posts: 5
Joined: Fri Feb 16, 2018 9:59 pm

Next

Return to Titan One Device

Who is online

Users browsing this forum: No registered users and 77 guests