20 lines
344 B
Plaintext
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);
|
|
}
|
|
|
|
|
|
}
|