20 lines
344 B
Plaintext
Raw Normal View History

void main()
{
object oEntering = GetEnteringObject();
object oRachel = GetObjectByTag("RachelShrine");
object oRahil = GetObjectByTag("Rahil");
object oRahilPost = GetWaypointByTag("POST_Rahil");
location lRahil = GetLocation(oRahilPost);
if (oRahil == OBJECT_INVALID)
{
CreateObject(OBJECT_TYPE_CREATURE,"rahil",lRahil);
}
}