Page 1 of 1
Quick question...
Posted: Sun May 18, 2014 9:47 am
by Signature
Would it be possible to trigger a cut scene in Zone depending on a certain monster being alive and spawned at time of entry?
Re: Quick question...
Posted: Sun May 18, 2014 1:29 pm
by atom0s
Inside the zones Zone.lua file, use the onZoneIn event to check if the mob is alive and spawned, then play the cutscene to the given player zoning in.
Re: Quick question...
Posted: Sun May 18, 2014 3:01 pm
by Signature
yes, Iam aware that I would have to do it in Zone.lua under ZoneIn event... Maybe I should Specify my questions a little more for.
What is the exact variable to call upon to make it look for that mob.
Re: Quick question...
Posted: Sun May 18, 2014 3:54 pm
by kjLotus
GetMobAction(id) gets you a mobs current action
Re: Quick question...
Posted: Sun May 18, 2014 4:20 pm
by Signature
Thank you!