Page 1 of 1

Braking

Posted: Wed Jan 31, 2018 5:46 pm
by DABZZZ
I have always played using one button for both brakes.. I've learned that kinda messes yuo up often.. Is there a program anyone knows of to where I could set my front brake for when lean backward and the rear brake is applied?
I use the left stick to lean, and left trigger for brake. so left stick back+left trigger=front brake

Re: Braking

Posted: Wed Jan 31, 2018 5:48 pm
by DABZZZ
ive tried altering my controller setup.. but 6-7 years of the same thing is incredibly hard to break lol

Re: Braking

Posted: Wed Jan 31, 2018 5:58 pm
by yzmxer608
XBCD or autohotkey might be able to help. I believe I've used autohotkey in the past to do something similar as I was trying to use both brakes on one button and the rear separate (same thing as you just opposite reason, both to stop faster when using rear brake, but rear separate to brake tap). Think I stopped going forward with it because normal rear brake kept locking up under normal braking when assigned to same button as front... Figured I'd tell you what has been tried before though.

Re: Braking

Posted: Thu Feb 08, 2018 9:29 am
by DABZZZ
yzmxer608 wrote:just to tag.
This is well beyond my knowledge. I couldn't really begin to understand the tutorial, the depth is intense lol. I checked some other stuff out on other forums and came up with this

Code: Select all

Controller(XboxOneForWindows) button 2::
Send {Controller(XboxOneForWindows) axis 2 (Positive) down}{Controller(XboxOneForWindows) axis 1 (Positive) down}
KeyWait, space
Send {Controller(XboxOneForWindows) axis 2 (Positive) up}{Controller(XboxOneForWindows) axis 1 (Positive) up}
return
But as you would assume, I get this in return when trying to run the script.
Image

I would guess I need to somehow tell the script that its for sim?

Re: Braking

Posted: Thu Feb 08, 2018 9:47 am
by DABZZZ
and after seeing some of JLV's scripts and a script from DDavis I know Im no where near doing what I need to be :/ lmao

Re: Braking

Posted: Thu Feb 08, 2018 9:48 am
by DABZZZ
This is also using autohotkey. XBCD doesn't recognize my controller to create a profile. Or even select the default profile.

Re: Braking

Posted: Thu Feb 08, 2018 5:56 pm
by Dumbbelly29
Maybe Xpadder?

Re: Braking

Posted: Fri Feb 09, 2018 1:17 am
by yzmxer608
Found a forum post I made on the autohotkey forums for this, hope it helps: https://autohotkey.com/board/topic/9513 ... on-1-axis/

Also here's a formal tutorial:
https://www.autohotkey.com/docs/misc/Re ... k.htm#axis
https://www.autohotkey.com/docs/commands/Send.htm

Re: Braking

Posted: Fri Feb 09, 2018 1:17 am
by yzmxer608
Might want to take a look at Joy2Key too.

Re: Braking

Posted: Fri Feb 09, 2018 4:44 am
by DABZZZ
yzmxer608 wrote:Found a forum post I made on the autohotkey forums for this, hope it helps: https://autohotkey.com/board/topic/9513 ... on-1-axis/

Also here's a formal tutorial:
https://www.autohotkey.com/docs/misc/Re ... k.htm#axis
https://www.autohotkey.com/docs/commands/Send.htm
Will post what I find after I host these fun races :)

Re: Braking

Posted: Fri Feb 09, 2018 9:38 pm
by DABZZZ
yzmxer608 wrote:Found a forum post I made on the autohotkey forums for this, hope it helps: https://autohotkey.com/board/topic/9513 ... on-1-axis/

Also here's a formal tutorial:
https://www.autohotkey.com/docs/misc/Re ... k.htm#axis
https://www.autohotkey.com/docs/commands/Send.htm
I guess I'd rather use the little bit of time I have to play/host rather than learning how to write a script to be honest.. Maybe I'll look into it more when I have a little more free time.