2024-06-20 15:47:42 -04:00

20 lines
344 B
Plaintext

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);
}
}