15 lines
707 B
Plaintext
15 lines
707 B
Plaintext
void main()
|
|
{
|
|
location lLocation1 = GetLocation(GetWaypointByTag("KuljherKing1"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard3", lLocation1, TRUE);
|
|
location lLocation2 = GetLocation(GetWaypointByTag("KuljherKing2"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard3", lLocation2, TRUE);
|
|
location lLocation3 = GetLocation(GetWaypointByTag("KuljherKing3"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard3", lLocation3, TRUE);
|
|
location lLocation4 = GetLocation(GetWaypointByTag("KuljherKing4"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard3", lLocation4, TRUE);
|
|
location lLocation5 = GetLocation(GetWaypointByTag("KuljherKing5"));
|
|
CreateObject(OBJECT_TYPE_CREATURE, "KingsGuard3", lLocation5, TRUE);
|
|
|
|
}
|