Page 2 of 2

Re: Problem with Scenario running out of order?

Posted: Thu Sep 28, 2006 4:09 pm
by raynes
I think I found the problem. It seems to be when you add a second action to an event.

So lets say I want npc a to appear when kitin dies and I want npc a to run.

I had the following
When Kitin dies
Npc A spawn
Npc A run

The result would be that npc a would spawn before the kitin dies. I changed it to:

When Kitin dies
Npc A spawns


When Kitin dies
Npc A run


and it worked.

Re: Problem with Scenario running out of order?

Posted: Thu Sep 28, 2006 5:51 pm
by sidusar
Hmm, I never had any problems with adding two seperate actions to one event. Maybe there's a problem with making an npc both spawn and run in one event.

I always set it up like:

When Kitin dies
NPC A spawns

When NPC A spawns
NPC A runs

Re: Problem with Scenario running out of order?

Posted: Thu Sep 28, 2006 7:27 pm
by sx4rlet
Mmm, that might be the way around it!
Gonna try that soon!

Tnx!