Jump to content
SPRITE CLUB DEBUTS ×
  • 0

power charge aura help? (Video)


Question

8 answers to this question

Recommended Posts

  • 0
Posted

so what would i change here?

 

[state 10000, Power Charge]

type = explod

trigger1 = Numhelper(10002)

helperType = Normal

stateNo = 10002

ID = 10002

name = "Power Charge"

posType = P1

pos = 0,0

pauseMoveTime = 65535

superMoveTime = 65535

  • 0
Posted

Loop your animation. And isn't that how Auras are supposed to be? If the aura is on top of your character then it is going to cover your character.

  • 0
Posted

I'm guessing you have something like this:

 

[state 10000, Power Charge]

type = explod

trigger1 = !time

helperType = Normal

stateNo = 10002

ID = 10002

name = "Power Charge"

posType = P1

pos = 0,0

pauseMoveTime = 65535

superMoveTime = 65535

 

Weeeelll....... That should work fine for a helper (if it is properly coded of course) however, explods have some different options. what you are looking for here is  this one:

 

Removetime =

 

which controls after how long your  explod will dissapear after the animation is over. If the time set in this parameter is longer than the animation itself it will loop. Since you skipped this line it gets the magical value of -2 which means that the explod will disappear as soon as the animation is over. If I'm not mistaken, what you want is to keep the explod in there until the player changes to another state so I'd recommend using another magical value: -1 which will cause the explod to stay there indefinitely. Of course that means that it will stay in there even after you stop using said move but that is no problem at all. Just use a removeexplod code like this:

 

You must call this one BEFORE the changestate

[state 10000, RemoveExplod]
type = RemoveExplod
trigger1 = (same as your change state)
id = 10002 (that is the ID you are using)

 

Or, in your statedef -2

 

[state 10000, RemoveExplod]
type = RemoveExplod
trigger1 = stateno != (your charge state)
id = 10002 (that is the ID you are using)

 

and that should make it work (or I'm just too dsitracted to think straight)

 

Also, this lines are extra in your explod code:

 

helperType = Normal

stateNo = 10002

name = "Power Charge"

 

Aaaaanddd, that's all, maybe, hope it helps.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...