YesNoOk
avatar

Need help for character specific winning quotes (Read 395 times)

Started by Jack-of-all-trades, November 16, 2011, 08:10:27 am
Share this topic:
Need help for character specific winning quotes
#1  November 16, 2011, 08:10:27 am
  • avatar
As far as I know, the new Mugen 1.0 RC8 allows players to not just edit winning quotes, but also specific some of them against a particular char after winning the fight.

For example, I have Master Gen as a char. I have created 7 winning quotes against everybody (victory0 to victory6). Say, I would like to have 2 more quotes only set against 2 different chars: one against Ryu and another against Bison. Could anybody teach me how, pleaseee?  ;D
Re: Need help for character specific winning quotes
#2  November 17, 2011, 12:23:58 am
  • ******
    • Guatemala
[State 180, Victory Quote vs. Character]
type = VictoryQuote
trigger1 = Enemy, Name = "Character" || Enemy, Name = "Other Character"; <--- The character name goes here. Note that 'name' refers to the name parameter in the def file, not the name of the character's folder. Use the second part if you want the quote to trigger against multiple characters.
value = *Number*; <---This value represents the number of the quote (victory*number*=your quote goes here)

So, let's take one of your examples:

Code:
[State 180, Victory Quote vs. Guy]
type = VictoryQuote
trigger1 = Enemy, Name = "Ryu"
value = 7
Last Edit: November 17, 2011, 12:28:17 am by ReDead

2OS

Re: Need help for character specific winning quotes
#3  November 17, 2011, 12:38:57 am
  • ****
  • Ich schicke dich zur HOELLE ! ¡ ! ¡
    • Egypt
    • deuceovspadez.webs.com/
Everything needs to have a sense of order.

EG —

;General:

victory0=
victory1=
victory2=
victory3=
victory4=

;VS Ryu:

victory5=
victory6=
victory7=
victory8=
victory9=

;VS Ken:

victory10=
victory11=
victory12=
victory13=
victory14=

The sctrl is ( apparently ) traditionally put in Statedef 180 but it doesn't really matter at all where it goes. I personally use Statedef -2

[State General Quote]
type=victoryquote
trigger1=1
value=0+(random%5)
ignorehitpause=1
persistent=1

[State VS Ryu Quote]
type=victoryquote
trigger1=p2name="Ryu"||p4name="Ryu
value=5+(random%5)
ignorehitpause=1
persistent=1

[State VS Ken Quote]
type=victoryquote
trigger1=p2name="Ken"||p4name="Ken"
value=10+(random%5)
ignorehitpause=1
persistent=1

You wanna put character specifics under the general, that way you don't have to list every character that you're not against as triggers. The bottom controllers have more priority.

You can have a total of 100 quotes. The ranging is 0-99, not 1-100.


[ 052012 ] Inazumachi 181/256  /  deviantART   /  2OS Grafphicsxz  Dead Anims ( Orochi/Mizuchi )  /  608's FX Volume 3
Re: Need help for character specific winning quotes
#4  November 21, 2011, 11:23:53 pm
  • avatar
Hi there. I have tried the 2 types of state controllers that both of you suggested.

Quote
[State 180, Victory Quote vs. Character]
type = VictoryQuote
trigger1 = Enemy, Name = "Character" || Enemy, Name = "Other Character"; <--- The character name goes here. Note that 'name' refers to the name parameter in the def file, not the name of the character's folder. Use the second part if you want the quote to trigger against multiple characters.
value = *Number*; <---This value represents the number of the quote (victory*number*=your quote goes here)

This one works perfectly fine ONLY on newer chars eg: My K' from KOF XI. Somehow, it doesn't work with Master Gen still.

Quote
;General:

victory0=
victory1=
victory2=
victory3=
victory4=

;VS Ryu:

victory5=
victory6=
victory7=
victory8=
victory9=

;VS Ken:

victory10=
victory11=
victory12=
victory13=
victory14=

The sctrl is ( apparently ) traditionally put in Statedef 180 but it doesn't really matter at all where it goes. I personally use Statedef -2

[State General Quote]
type=victoryquote
trigger1=1
value=0+(random%5)
ignorehitpause=1
persistent=1

[State VS Ryu Quote]
type=victoryquote
trigger1=p2name="Ryu"||p4name="Ryu
value=5+(random%5)
ignorehitpause=1
persistent=1

[State VS Ken Quote]
type=victoryquote
trigger1=p2name="Ken"||p4name="Ken"
value=10+(random%5)
ignorehitpause=1
persistent=1

The same also goes for this one. Works only on newer chars but not older ones.

Is it true that these state controllers for winning quotes only work for newer characters but not older ones?
Re: Need help for character specific winning quotes
#5  November 21, 2011, 11:53:25 pm
  • ******
    • Guatemala
Character.def said:
[...]
mugenversion=1.0