collapse

Author Topic: Help with combos in Fighter Factory  (Read 1084 times)

0 Members and 1 Guest are viewing this topic.

Offline CheeseCakeBeats

  • Initiate
  • **
  • Posts: 18
  • Country: United States us
  • Last Login:August 12, 2018, 02:00:54 AM
  • I make stuff.
    • YT channel
    • Email
Help with combos in Fighter Factory
« on: April 09, 2018, 05:00:33 PM »
I want to create a combo. Light (x), medium (y) , and heavy (z). I want to link those attacks together when used in that order.

How would I do that without making the attack animations faster or the hitstun longer so the character won't be able to spam light (x) attack in the corner?

Sorry for all the posts lately.



Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12459
  • Country: Brazil br
  • Last Login:April 27, 2024, 11:21:03 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Help with combos in Fighter Factory
« Reply #1 on: April 09, 2018, 06:08:47 PM »
Quote
Sorry for all the posts lately.
This is not a problem, at all.

You just need to add the proper check (read the Triggers documentation under DOCS folder in your Mugen folder), take a look:

Quote
;---------------------------------------------------------------------------
; Stand Light Punch
[State -1, Stand Light Punch]
type = ChangeState
value = 200
triggerall = command = "x"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl
Will trigger if:
- The command is X
- AND you haven't held that button
- If your statype is S (standing)
- And if you have control


Its the same logic for the medium punch, you just add more checks
Quote
;---------------------------------------------------------------------------
; Stand Medium Punch
[State -1, Stand Medium Punch]
type = ChangeState
value = 210
triggerall = command = "y"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl
trigger2 = (stateno = 200 || stateno = 230 || stateno = 400 || stateno = 430)  && movecontact
ignorehitpause=1

Look at the TRIGGER2 line. It will trigger if you are in any of those state numbers (200,230,400,430) and the move has made contact, plus the all the previous conditions.

The same works for the hard attack

Quote
;---------------------------------------------------------------------------
; Stand Strong Punch
[State -1, Stand Strong Punch]
type = ChangeState
value = 220
triggerall = command = "z"
triggerall = command != "holddown"
trigger1 = statetype = S
trigger1 = ctrl
trigger2 = (stateno = 210 || stateno = 240 || stateno = 410 || stateno = 440|| stateno = 200|| stateno = 400||stateno = 230|| stateno = 430)  && movecontact
ignorehitpause=1

Just avoid to inclued the same state of the attack (in other words, do not include stateno 220 for the Stand Strong Punch) or it will be a infinite combo.

About the spam in the corner, read in the manual for "juggle" and "ground.cornerpush". The info is all there.

Offline CheeseCakeBeats

  • Initiate
  • **
  • Posts: 18
  • Country: United States us
  • Last Login:August 12, 2018, 02:00:54 AM
  • I make stuff.
    • YT channel
    • Email
Re: Help with combos in Fighter Factory
« Reply #2 on: April 09, 2018, 07:19:17 PM »
This is not a problem, at all.

You just need to add the proper check (read the Triggers documentation under DOCS folder in your Mugen folder), take a look:
Will trigger if:
- The command is X
- AND you haven't held that button
- If your statype is S (standing)
- And if you have control


Its the same logic for the medium punch, you just add more checks
Look at the TRIGGER2 line. It will trigger if you are in any of those state numbers (200,230,400,430) and the move has made contact, plus the all the previous conditions.

The same works for the hard attack

Just avoid to inclued the same state of the attack (in other words, do not include stateno 220 for the Stand Strong Punch) or it will be a infinite combo.

About the spam in the corner, read in the manual for "juggle" and "ground.cornerpush". The info is all there.

Thanks so much  ^:)^

Offline CheeseCakeBeats

  • Initiate
  • **
  • Posts: 18
  • Country: United States us
  • Last Login:August 12, 2018, 02:00:54 AM
  • I make stuff.
    • YT channel
    • Email
Re: Help with combos in Fighter Factory
« Reply #3 on: April 09, 2018, 08:28:58 PM »
Thanks so much  ^:)^

Also it turns out that if I try to make other moves connect (Example: Light punch -> Medium kick -> Heavy punch or Light punch -> Medium Punch -> Heavy punch) I can infinitely press medium punch and medium kick.

I didn't list stateno 210 under state 210 OR stateno 240 under 240 etc. like you said. I need a way to stop medium punch and kick from being mashable. I think I should use changestate although I'm unsure...

Tags:
 


* IMT Facebook

Help us by Donating!

IMT Discord

Join us at our Discord! Click the image below!

* IMT Shoutbox

Sorry, this shoutbox does not exist.

* Recent Posts

* IMT Calendar

April 2024
Sun Mon Tue Wed Thu Fri Sat
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 [29] 30

SimplePortal 2.3.5 © 2008-2012, SimplePortal