Final Fantasy Hacktics

Modding => Help! => Topic started by: Jumza on November 20, 2012, 10:16:26 pm

Title: Event Instruction help (Effect)
Post by: Jumza on November 20, 2012, 10:16:26 pm
So, the problem I'm having is that, while event editing I added an Effect Instruction,
Effect(x00E0,x09,005,010,x00)
EffectStart()
EffectEnd()
I was wondering how I can make the unit this instruction is targeting (in this case Unit ID 09) hold a pose the whole time, because right now it works fine up to the end then she starts walking. I've tried putting UnitAnim's before, after even in the middle of these instructions, and nothing helps. Anyone know what to do?
Title: Re: Event Instruction help (Effect)
Post by: Pride on November 21, 2012, 02:01:45 am
Have you tried using a block?

such as

blockstart()
wait
unitanim
blockend()
effect
effectstart()
effectend()
waitforinstruction(whatever is wait for unit animation, 0x0B iirc)
Title: Re: Event Instruction help (Effect)
Post by: 3lric on November 21, 2012, 08:04:17 pm
This is the way I make it work ^ Tho Pride's way is a bit more fancy and probably more useful then mine. I hadn't thought of the wait for instruction :P
Title: Re: Event Instruction help (Effect)
Post by: Jumza on November 21, 2012, 09:06:04 pm
How long should the wait instruction be? Because right now she holds the animation until the effect ends, but she starts walking on the spot still.
Title: Re: Event Instruction help (Effect)
Post by: 3lric on November 21, 2012, 11:13:02 pm
You may have to mess with it a bit, start at Wait(00150) and go down to 00100 if that is to long then 00050 if that is to long, etc.
It may take some fine tuning, but that is what eventing is all about.