Amon_PRC8/_module/nss/kuljherking4.nss

15 lines
707 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
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);
}