Help for creating macros for Left & Right stick analogs

Need help? Ask here and someone will help
Post Reply
family
Posts: 1
Joined: Sat Sep 01, 2012 11:34 am

Help for creating macros for Left & Right stick analogs

Post by family »

Hello,

I have the game "Summer Challenge Athletics Tournament", not the best of the world, but I want to make good scores and to take my revenge ; I have destroyed the left & right stick analogs...

I have made a macro for emulating L and R like in the screen-game. The two are turning clockwise.



my settings :
Left stick : UP - RIGHT - DOWN - LEFT
Right stick : o - SEMICOLON - l - k

But my macros isn't working :

MACRO KEYDOWN KP5
KEYDOWN o
KEYDOWN DOWN
DELAY 1
KEYUP o
KEYUP DOWN
DELAY 1
KEYDOWN o
KEYDOWN SEMICOLON
KEYDOWN DOWN
KEYDOWN LEFT
DELAY 1
KEYUP o
KEYUP SEMICOLON
KEYUP DOWN
KEYUP LEFT
DELAY 1
KEYDOWN SEMICOLON
KEYDOWN LEFT
DELAY 1
KEYUP SEMICOLON
KEYUP LEFT
DELAY 1
KEYDOWN SEMICOLON
KEYDOWN l
KEYDOWN LEFT
KEYDOWN UP
DELAY 1
KEYUP SEMICOLON
KEYUP l
KEYUP LEFT
KEYUP UP
DELAY 1
KEYDOWN l
KEYDOWN UP
DELAY 1
KEYUP l
KEYUP UP
DELAY 1
KEYDOWN l
KEYDOWN k
KEYDOWN UP
KEYDOWN RIGHT
DELAY 1
KEYUP l
KEYUP k
KEYUP UP
KEYUP RIGHT
DELAY 1
KEYDOWN k
KEYDOWN RIGHT
DELAY 1
KEYUP k
KEYUP RIGHT
DELAY 1
KEYDOWN k
KEYDOWN o
KEYDOWN RIGHT
KEYDOWN DOWN
DELAY 1
KEYUP k
KEYUP o
KEYUP RIGHT
KEYUP DOWN
KEYDOWN KP5

Can someone help me for beat the world record !
Cybereu
Posts: 183
Joined: Sun Jul 10, 2011 1:10 pm

Re: Help for creating macros for Left & Right stick analogs

Post by Cybereu »

Seens the delay is too short, try DELAY 30
bjaigorgor
Posts: 17
Joined: Wed Sep 21, 2011 7:19 am

Re: Help for creating macros for Left & Right stick analogs

Post by bjaigorgor »

i don't think that you are able to create a macro for 360 degrees. i've been trying to do that for Street Fighter but it ain't working. there is a shorter way of creating the corner directions. here is what i think it should be but doesn't work. the delays are random too

KEYDOWN DOWN
DELAY 50
KEYDOWN LEFT
DELAY 50
KEYUP DOWN
DELAY 50
KEYDOWN UP
DELAY 50
KEYUP LEFT
DELAY 50
KEYDOWN RIGHT
DELAY 50
KEYUP UP
DELAY 50
KEYDOWN DOWN
DELAY 50
KEYUP RIGHT
DELAY 50
KEYUP DOWN
Cybereu
Posts: 183
Joined: Sun Jul 10, 2011 1:10 pm

Re: Help for creating macros for Left & Right stick analogs

Post by Cybereu »

I did this macro for Zangief skill (Street Fighter IV) and works most of the times.

Code: Select all

MACRO JBUTTONDOWN 10
JBUTTONDOWN 4
DELAY 20
JBUTTONUP 4
DELAY 20
JBUTTONDOWN 5
DELAY 20
JBUTTONUP 5
DELAY 20
JBUTTONDOWN 6
DELAY 20
JBUTTONUP 6
DELAY 20
JBUTTONDOWN 7
DELAY 20
JBUTTONUP 7
DELAY 20
JBUTTONDOWN 4
DELAY 20
JBUTTONUP 4
DELAY 20
JBUTTONDOWN 15
DELAY 20
JBUTTONUP 15
DELAY 20
KEYUP 10
As you can see im using a joystick, keys are:
JBUTTON 4 = up
JBUTTON 5 = right
JBUTTON 6 = down
JBUTTON 7 = left
JBUTTON 10 = L2 (dont have sure)
JBUTTON 15 = Square (dont remember too)


Edited: Try this macro:
Trigger Numeric keyboard 5

Code: Select all

MACRO KEYDOWN KP5
KEYDOWN UP
DELAY 20
KEYUP UP
DELAY 20
KEYDOWN RIGHT
DELAY 20
KEYUP RIGHT
DELAY 20
KEYDOWN DOWN
DELAY 20
KEYUP DOWN
DELAY 20
KEYDOWN LEFT
DELAY 20
KEYUP LEFT
DELAY 20
KEYDOWN UP
DELAY 20
KEYUP UP
DELAY 20
KEYUP KP5
Post Reply