|
|
|
#3205683 - 02/11/11 09:15 PM
Superbug" trying to use an axis for the TDC
|
Member
Registered: 02/19/01
Posts: 258
Loc: miami, fl usa
|
In the superbug for FSX, the arrow keys control the TDC. I would like to use the x and y axis on the mini joystick on the CH throttle but don't know how to do that. In AFF4, the game itself allows you to use the x and y axis on the mini joystick for the TDC controls. Any ideas?
_________________________
Trackir4, Win7Pro Pro 64Bit, Intel(R) Core™ i5-2500 3.30 GHz 6M Intel Smart Cache LGA115 , GigaByte GA-Z68XP-UD4 Intel Z68 Chipset, DDR3 8GB Ram,AMD Radeon HD 6950 2GB GDDR5 16X PCIe Video Card, Main Monitor 1 on left 1920x1080 Monitor 2 on right 1280x1024
|
|
Top
|
|
|
|
#3206041 - 02/12/11 12:15 PM
Re: Superbug" trying to use an axis for the TDC
[Re: sobe]
|
Member
Registered: 02/19/01
Posts: 258
Loc: miami, fl usa
|
Bless you. I will try it out later today.
What happened to the CH hanger site?
_________________________
Trackir4, Win7Pro Pro 64Bit, Intel(R) Core™ i5-2500 3.30 GHz 6M Intel Smart Cache LGA115 , GigaByte GA-Z68XP-UD4 Intel Z68 Chipset, DDR3 8GB Ram,AMD Radeon HD 6950 2GB GDDR5 16X PCIe Video Card, Main Monitor 1 on left 1920x1080 Monitor 2 on right 1280x1024
|
|
Top
|
|
|
|
#3206045 - 02/12/11 12:18 PM
Re: Superbug" trying to use an axis for the TDC
[Re: sobe]
|
USMC
Veteran
Registered: 09/17/02
Posts: 10476
Loc: Elizabeth City NC
|
You're welcome. Revvin says he's changing the hampster.
|
|
Top
|
|
|
|
#3206282 - 02/12/11 06:46 PM
Re: Superbug" trying to use an axis for the TDC
[Re: sobe]
|
Member
Registered: 02/19/01
Posts: 258
Loc: miami, fl usa
|
thanks Ghost I noticed you also have the brakes script that I would like to use. My question is what is the setup on the pedals, ie, do you check DX Mode and leave everything else none? thanks again
_________________________
Trackir4, Win7Pro Pro 64Bit, Intel(R) Core™ i5-2500 3.30 GHz 6M Intel Smart Cache LGA115 , GigaByte GA-Z68XP-UD4 Intel Z68 Chipset, DDR3 8GB Ram,AMD Radeon HD 6950 2GB GDDR5 16X PCIe Video Card, Main Monitor 1 on left 1920x1080 Monitor 2 on right 1280x1024
|
|
Top
|
|
|
|
#3206309 - 02/12/11 07:27 PM
Re: Superbug" trying to use an axis for the TDC
[Re: sobe]
|
USMC
Veteran
Registered: 09/17/02
Posts: 10476
Loc: Elizabeth City NC
|
Yes. That entire script is:
script ///////////////////////////////////////////////////////////////////// // Toebrakes, the farther you push the pedal the more times per second the brakes go on/off. Feels like progressive braking. ///////////////////////////////////////////////////////////////////// CMS.B11= ( [ JS4.A1 >= 250 ] ) OR ( [ JS4.A2 >= 250 ] ); TIMER ( INTERVAL, D1, 1, 1 ) = ( [ JS4.A1 >= 200 ] AND [ JS4.A1 < 250 ] AND NOT [ JS4.A2 >= 250 ] ) OR ( [ JS4.A2 >= 200 ] AND [ JS4.A2 < 250 ] AND NOT [ JS4.A1 >= 250 ] ); TIMER ( INTERVAL, D2, 1, 2 ) = ( [ JS4.A1 >= 150 ] AND [ JS4.A1 < 200 ] AND NOT [ JS4.A2 >= 200 ] ) OR ( [ JS4.A2 >= 150 ] AND [ JS4.A2 < 200 ] AND NOT [ JS4.A1 >= 200 ] ); TIMER ( INTERVAL, D3, 1, 3 ) = ( [ JS4.A1 >= 100 ] AND [ JS4.A1 < 150 ] AND NOT [ JS4.A2 >= 150 ] ) OR ( [ JS4.A2 >= 100 ] AND [ JS4.A2 < 150 ] AND NOT [ JS4.A1 >= 150 ] ); TIMER ( INTERVAL, D4, 1, 4 ) = ( [ JS4.A1 >= 50 ] AND [ JS4.A1 < 100 ] AND NOT [ JS4.A2 >= 100 ] ) OR ( [ JS4.A2 >= 50 ] AND [ JS4.A2 < 100 ] AND NOT [ JS4.A1 >= 100 ] );
CMS.B11 = ( B11 OR D1 OR D2 OR D3 OR D4 ); endScript
|
|
Top
|
|
|
|
|
|
| |