ack-ack, any chance you could provide me with a link that will help me convert the mini-stick to 8 way hat please, as I'm having trouble finding it myself. I would love to have this feature.
Cheers mate.
// 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
Just copy and paste the above into the CM Editor in Control Manager and then click on the CMS tab and assign Buttons 1 through 8 with the KP views.
ack-ack