btw i tried to use the ch hangar, it really messed up my sticks. to the point where i cant fix them. spend close to 2 hours working on them, cant fly. even after deleting the ch managarer tired to reset my old setip since i had a batck of my old system, and no dice..
semp
ACK ACK posted this for me. The CH Control manager states you should have a little programming knowledge before using. You don't need a lot just basic know how. You one thing you can not do in AH is on the Pro Throttle you can turn it into an 8 way hat. The CH Software will not screw up your stick, pedals or throttle. If you remove the software and hardware and reboot your system your back as if you never installed it.
TD
ACK ACK's code
Script to turn the mini-stick to an 8 way hatswitch.
Just a quick note first, after you've put the script into your template click on the CMS Control tab and enter the KP view keys for Buttons 1 through 8 (B1-B8).
Now here's the script.
// CMS Script File
//
// Game Title: Aces High II
// Written By: Ack-Ack
// Date: 08/07/06
//
script
%define up [js2.a2 < 128 - 40]
%define down [js2.a2 > 128 + 40]
%define left [js2.a1 < 128 - 40]
%define right [js2.a1 > 128 + 40]
// %define up [msy < 128 - db]
// %define down [msy > 128 + db]
// %define left [msx < 128 - db]
// %define right [msx > 128 + db]
%define up_key cms.b1
%define upright_key cms.b2
%define right_key cms.b3
%define downright_key cms.b4
%define down_key cms.b5
%define downleft_key cms.b6
%define left_key cms.b7
%define upleft_key cms.b8
// Test for up
if (up and not left and not right) then
up_key = TRUE;
else
up_key = FALSE;
endif
// Test for up and right
if (up and right) then
upright_key = TRUE;
else
upright_key = FALSE;
endif
// Test for right
if (right and not up and not down) then
right_key = TRUE;
else
right_key = FALSE;
endif
// Test for down and right
if (down and right) then
downright_key = TRUE;
else
downright_key = FALSE;
endif
// Test for down
if (down and not left and not right) then
down_key = TRUE;
else
down_key = FALSE;
endif
// Test for down and left
if (down and left) then
downleft_key = TRUE;
else
downleft_key = FALSE;
endif
// Test for left
if (left and not up and not down) then
left_key = TRUE;
else
left_key = FALSE;
endif
// Test for up and left
if (up and left) then
upleft_key = TRUE;
else
upleft_key = FALSE;
endif
//
endScript
ack-ack
TD