YesNoOk
avatar

Need help nerfing god zombie dictator (Read 236 times)

Started by Burning_Typhoon, January 03, 2013, 07:36:32 am
Share this topic:
Need help nerfing god zombie dictator
#1  January 03, 2013, 07:36:32 am
  • ***
I've downloaded God Zombie Vega (M.Bison) and, I'm having an issue with his psycho power.  I can't get it to turn off when the character's health hits zero.  It's really a problem when it's a 2v2 match, and he dies first with a ball of death on the screen assisting his teammate.

I've already tweaked it a little to make the character a little less cheap, and getting it to turn off when it should would be perfect..

[State -2, fx]
type=helper
trigger1= Life<=300&&!numhelper(1610)
trigger2= power>=5000&&!numhelper(1610)
helpertype=normal
stateno=1610 ;<-- Aura Animation
Pos = 10,-60 ;<--where it is positioned on the char
ID = 1610 ;<--An ID that you can give Explods
ownpal = 1 ;<--set to 1 if it has a different pal from your char
size.xscale=.5
size.yscale=.5 ;<-- how big or
sprpriority=1
persistent=1

Above is the activation code.

What do I need to do to fix this, please?
EDIT:  And, while we're at it, what if I want to have it activate one time per match?  In case some character can heal a team mate, or revive, or something.  I don't want the psycho power activating a second time. ..  Mugen 1.0
Last Edit: January 03, 2013, 08:07:05 am by Burning_Typhoon
Re: Need help nerfing god zombie dictator
#2  January 04, 2013, 05:03:38 pm
  • *****
  • Mega Klinklang confirmed
    • USA
    • ricepigeon.webs.com
EDIT:  And, while we're at it, what if I want to have it activate one time per match?  In case some character can heal a team mate, or revive, or something.  I don't want the psycho power activating a second time. ..  Mugen 1.0

Quote
unused var(X)

[State -2, fx]
type=helper
triggerall = var(x) = 0
trigger1= Life<=300&&!numhelper(1610)
trigger1 = var(x) := 1
trigger2= power>=5000&&!numhelper(1610)
trigger2 = var(x) := 1

additions in bold

<<-- Updated 09/14/14

You limit yourself so badly when you try to avoid variables. When you get over your fear of the "complexity" of variables, you will find yourself in a better place: A beautiful world where coding is actually fun.