The Mugen Fighters Guild

Help => M.U.G.E.N Development Help => Topic started by: Drewism19 on February 21, 2021, 03:27:54 am

Title: How to make it so you can input a special move during a normal attack
Post by: Drewism19 on February 21, 2021, 03:27:54 am
So, I'm working on a completely fresh character, everything's animated by me and stuff, and I need help with something. How do I make it possible so I can input a special move during a normal attack and have the special move go off as soon as the on-going attack is finished, so I can combo moves together? Thanks.
Title: Re: How to make it so you can input a special move during a normal attack
Post by: 087-B on February 21, 2021, 03:31:46 am
Here, this is on a character I'm working on:

Code:
[State -1]
type = ChangeState
value = 1000
triggerall = roundstate = 2 && !AILevel
triggerall = command = "qcf_x"
trigger1 = statetype != A && ctrl
trigger2 = stateno = [200,450]
trigger2 = movecontact

Statedef 1000 is the special move. The trigger2 lines are the important part. It makes it so you can input the command if you're in the middle of using the normals AND if they make contact. This is essentially how it works in Marvel vs. Capcom.

I hope this helps!
Title: Re: How to make it so you can input a special move during a normal attack
Post by: Drewism19 on February 22, 2021, 07:19:52 pm
Here, this is on a character I'm working on:

Code:
[State -1]
type = ChangeState
value = 1000
triggerall = roundstate = 2 && !AILevel
triggerall = command = "qcf_x"
trigger1 = statetype != A && ctrl
trigger2 = stateno = [200,450]
trigger2 = movecontact

Statedef 1000 is the special move. The trigger2 lines are the important part. It makes it so you can input the command if you're in the middle of using the normals AND if they make contact. This is essentially how it works in Marvel vs. Capcom.

I hope this helps!

Thank you so much! This helps out amazingly. Since I've started I've learned a lot and this along with grabs are the last things I need to know to understand the basics of fighter factory. Again, thank you!