YesNoOk
avatar

Specials attack help (Read 562 times)

Started by ArSoNiSt_JoE, October 18, 2007, 04:37:43 pm
Share this topic:
Specials attack help
#1  October 18, 2007, 04:37:43 pm
  • Feel my burning vigor!!
I have just started working on Ken from Street Fighter II Turbo. I have finished all of the basic attacks but I'm not quite sure how to code his signature move, the shoryuken. I have an acute knowledge of hitdefs but I am very stron g when it comes to velocities. I'm kinda new to mugen so please bear with me! ;D
Mugen's greatest creator, Street fighter's greatest character, my greatness is UNLIMITED!!
Re: Specials attack help
#2  October 18, 2007, 05:17:52 pm
  • ****
  • "Moyashi tsuku shite yaru..."
I don't see any question.
Re: Specials attack help
#3  October 18, 2007, 05:34:26 pm
  • ******
  • [E]
    • Mexico

  • Online


collision boxes are very important in this move, be careful with them.

you should split it in 4 parts, when you get more used to mugen code you can merge those as you see fit.

1)start up. statetype = S meaning that the character will be in the ground, movetype = A, you will have one hitdef here, as well as a velset for x and Y for the start up velocity after a few frames; when pos Y < 0 you cahnge to the next state.

2)shoryuken attacking. statetype = A, movetype =A, physics = IN; no velset of 0,0 , so delete it if you have it in your statedef. use either a gravity sctrl or a veladd for Y, also a velmul for X, both with trigger1  = 1. you also have a hit def there, the triggering might depend on the previous move hitting or not. when vel Y > 0 you change to the next state.

3)shoryuken falling. same as previous one, but movetype = I, gravity etc.. holds true, no hitdef there, when pos Y >= 0 change to next state.

4) recovering from shoryuken. statetype=S, physics = S, movetype =I, just an almost empty state witha  change state to 0 when animtime = 0.
Last Edit: October 18, 2007, 06:04:39 pm by [E]arly Morning Poison
Re: Specials attack help
#4  October 18, 2007, 05:59:54 pm
  • ******
    • www.mugenguild.com/pots/
Use anything you want from my works.  If you need to contact me use email, not private messages.
Re: Specials attack help
#5  October 18, 2007, 08:28:39 pm
  • Feel my burning vigor!!
Thanks! I'll try it!! :)
Mugen's greatest creator, Street fighter's greatest character, my greatness is UNLIMITED!!