void main() { object oTarget; object oSpawn; location lTarget; object oPC = GetPCSpeaker(); // Only fire once. if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) ) return; SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE); oTarget = GetWaypointByTag("WP_Spn_Varris"); lTarget = GetLocation(oTarget); oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "varris", lTarget); oTarget = oSpawn; }