Page 1 of 1

Encounters + Waypoints

Posted: Thu Aug 24, 2006 12:15 am
by p0m
Heya guys,

This may be a stupid and pointless question, but I'm wondering if anyone might have a solution to this.

I have an encounter that is triggered by a conversation, which is fine, however I want to have all the creatures spawned by this encounter run towards a waypoint near where they spawn.

Is there a way to do this, without using a different onspawn for the creatures as they already have a quite hefty onspawn.

Cheers,
p0m

Posted: Mon Sep 18, 2006 4:24 am
by jaythespacehound
Welllll... you could always use the onUserDefined and set the spawn in to onSpawned.... *innocent grin*

Posted: Mon Sep 18, 2006 7:23 am
by Jonezie
Tag the waypoint 'POST_<creature tag>'. Note that this will cause all creatures of this tag to move to the waypoint, not just the ones from your encounter. Not so good, unless the encounter creatures are unique in the area.

Or, have a heartbeat script somewhere. No good for PWs, okay for single-player mods.

Or, instead of spawning the creatures from an encounter, create them via a script in the conversation, and assign them to move to the waypoint. That's what Id be doing.

EDIT: Old post!

Posted: Mon Sep 18, 2006 3:35 pm
by jaythespacehound
Woops, my mistake, good solutions though Jonezie.