• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

PSA Help! How can I set button to just one directional stick input?

Aerros11

Smash Journeyman
Joined
Sep 5, 2009
Messages
284
Setting Requirement to 34 allows for either right or left to be used for a command.
Setting Requirement to 35 allows for either up or down to be used for a command.
But there is no requirement to set solely up, solely left, etc..

I want to set these commands for usage as follows:
MULTIPLE ROLLS
Subaction 44: Animation EscapeF
Main:
If 34(left or right)
Additional Requirement: Not 16 (heheheh) (Is Overstepping an Edge)
Change Action to 01F(Roll Forward)................or Roll Backward if Reverse Direction is before...anyway
Asynchronous Timer: frames=0
Body Collision Normal
Terminate Collisions​
End If

SPOT DODGE OUT OF ROLL
Subaction 44: Animation EscapeF
Main:
If Button Press (down direction stick)
Change SubAction to 043 (EscapeN)​
End If:

JUMP OUT OF ROLL
Subaction 44: Animation EscapeF
Main:
If Button Press 02 (Up, Y, X)
Change Action (Value 00B aka Jump)​
End If:

PARRY??? Copy Marth SpecialLw?
Activate somehow by tapping forward one frame before a hitbox else do nothing?

 
Last edited:

Aerros11

Smash Journeyman
Joined
Sep 5, 2009
Messages
284
I found this, let me see if it helps me:

Hey guys. Know how I posted this:

*~If Joystick is Pressed Back~*
Compare: IC-Basic[243] >= IC-Basic[77]
Additional Req: Compare: IC-Basic[9] < IC-Basic[254]

*~If Joystick is Pressed Forward~*
Compare: IC-Basic[244] >= IC-Basic[77]
Additional Req: Compare: IC-Basic[9] < IC-Basic[254]

*~If Joystick is Pressed Up~*
Compare: IC-Basic[250] >= IC-Basic[114]

*~If Joystick is Pressed Down~*
Compare: IC-Basic[252] >= IC-Basic[114]
I think you actually need to enter different values than what appears.
Replacing these numbers should work:

*~If Joystick is Pressed Back~*
Compare: IC-Basic[243] >= IC-Basic[77]
243 = 1011
77 = 3149
Additional Req: Compare: IC-Basic[9] < IC-Basic[254]
9 = 21001
254 = 23038

*~If Joystick is Pressed Forward~*
Compare: IC-Basic[244] >= IC-Basic[77]
244 = 1012
77 = 3149
Additional Req: Compare: IC-Basic[9] < IC-Basic[254]
9 = 21001
254 = 23038

*~If Joystick is Pressed Up~*
Compare: IC-Basic[250] >= IC-Basic[114]
250 = 1018
114 = 3186

*~If Joystick is Pressed Down~*
Compare: IC-Basic[252] >= IC-Basic[114]
252 = 1020
114 = 3186
 
Top Bottom