YesNoOk
avatar

Hyper combo finish Problem (Read 214 times)

Started by -Whiplash-, April 16, 2014, 04:22:36 pm
Share this topic:
Hyper combo finish Problem
#1  April 16, 2014, 04:22:36 pm
  • **
  • Prince of Latis
    • Canada
    • Skype - whiplash-1

  • Online
I've made my vega have Bloody High claw as a hyper.

However, whever he KOs someone the Hyper combo Finish Background Activates each time he hit the opponent, even after they're dead.

I can't use the "persistent = 0" trigger since each part of the attack is it's own state, so how would I go about this?

Here's the Code for Bloody High Claw:

Spoiler, click to toggle visibilty
Re: Hyper combo finish Problem
#2  April 16, 2014, 06:49:51 pm
  • ***
    • USA
           
Re: Hyper combo finish Problem
#3  April 16, 2014, 08:09:05 pm
  • **
Adding a roundstate=2 to your WinKO triggers should do the trick.
Re: Hyper combo finish Problem
#4  April 16, 2014, 10:44:04 pm
  • **
  • Prince of Latis
    • Canada
    • Skype - whiplash-1

  • Online
Oddly enough none of these are working. Now the effect doesn't appear at all.
Re: Hyper combo finish Problem
#5  April 16, 2014, 11:26:05 pm
  • **
Then you'll have to set a var after the Super KO Explod and PlaySnd blocks.
Code:
[State 3300, Super KO Spark]
type = Explod
trigger1 = winKO
trigger1 = var(59)=0
anim = 8025
bindtime = -1
pos = 0,0
postype = back
sprpriority = -3
supermovetime = -1
ignorehitpause = 1
ownpal = 1
persistent = 0
 
[State 3300, Super KO Sound]
type = PlaySnd
trigger1 = winKO
trigger1 = var(59)=0
value = S69,15
ignorehitpause = 1
persistent = 0

[State 3300, Super KO Switch]
type = VarSet
trigger1 = WinKO
trigger1 = var(59)=0
var(59)=1
ignorehitpause=1


Alternative solution amongst many others : add an everlasting invisible element at the end of your Super KO Spark animation so it doesn't despawn until the next round starts, use that explod as a trigger.
Code:
[State 3300, Super KO Sound]
type = PlaySnd
trigger1 = winKO
trigger1 = NumExplod(8025)=0
value = S69,15
ignorehitpause = 1
persistent = 0

[State 3300, Super KO Spark]
type = Explod
trigger1 = winKO
trigger1 = NumExplod(8025)=0
ID=8025
anim = 8025
bindtime = -1
pos = 0,0
postype = back
sprpriority = -3
supermovetime = -1
ignorehitpause = 1
ownpal = 1
persistent = 0