38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
|
|
|
|
void main()
|
|
{
|
|
location lLocation = GetLocation(OBJECT_SELF);
|
|
location lLocation1 = GetLocation(GetWaypointByTag("Cal_WP_01"));
|
|
location lLocation2 = GetLocation(GetWaypointByTag("Cal_WP_02"));
|
|
location lLocation3 = GetLocation(GetWaypointByTag("Cal_WP_03"));
|
|
location lLocation4 = GetLocation(GetWaypointByTag("Cal_WP_04"));
|
|
location lLocation5 = GetLocation(GetWaypointByTag("Cal_WP_05"));
|
|
location lLocation6 = GetLocation(GetWaypointByTag("Cal_WP_06"));
|
|
|
|
|
|
|
|
DestroyObject(OBJECT_SELF);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "calthaerevealed", lLocation);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "blackclawcavegua", lLocation1);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul2", lLocation2);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul3", lLocation3);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul2", lLocation4);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul3", lLocation5);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "BlackClawCaveCaptain", lLocation6);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "blackclawcavegua", lLocation1);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "blackclawcavegua", lLocation5);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul2", lLocation4);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul3", lLocation1);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul2", lLocation3);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "vargul3", lLocation6);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "BlackClawCaveCaptain", lLocation1);
|
|
CreateObject(OBJECT_TYPE_CREATURE, "blackclawcavegua", lLocation1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|