21 lines
1.1 KiB
Plaintext
21 lines
1.1 KiB
Plaintext
|
void main()
|
||
|
{
|
||
|
location lLocation1 = GetLocation(GetWaypointByTag("KuljherKing1"));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation1, TRUE);
|
||
|
location lLocation2 = GetLocation(GetWaypointByTag("KuljherKing2"));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard1", lLocation2, TRUE);
|
||
|
location lLocation3 = GetLocation(GetWaypointByTag("KuljherKing3"));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation3, TRUE);
|
||
|
location lLocation4 = GetLocation(GetWaypointByTag("KuljherKing4"));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard1", lLocation4, TRUE);
|
||
|
location lLocation5 = GetLocation(GetWaypointByTag("KuljherKing5"));
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation5, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation1, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard1", lLocation2, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation3, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard1", lLocation4, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard", lLocation5, TRUE);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "Chalise2", lLocation1, TRUE);
|
||
|
|
||
|
}
|