52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
#include "nw_i0_generic"
|
|
|
|
void main()
|
|
{
|
|
ExecuteScript("nw_c2_default7", OBJECT_SELF);
|
|
ExecuteScript("tab_xp_multi",OBJECT_SELF);
|
|
object oPC = GetLastKiller();
|
|
|
|
while (GetIsObjectValid(GetMaster(oPC)))
|
|
{
|
|
oPC=GetMaster(oPC);
|
|
}
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
object oTarget;
|
|
object oSpawn;
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("wp_tabmind_01");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerboss", lTarget);
|
|
|
|
|
|
oTarget = GetWaypointByTag("wp_tabmind_02");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerlvlu", lTarget);
|
|
|
|
|
|
oTarget = GetWaypointByTag("wp_tabmind_03");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerlvlu", lTarget);
|
|
|
|
|
|
oTarget = GetWaypointByTag("wp_tabmind_04");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerlvlu", lTarget);
|
|
|
|
|
|
oTarget = GetWaypointByTag("wp_tabmind_05");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerlvlu", lTarget);
|
|
|
|
|
|
oTarget = GetWaypointByTag("wp_tabmind_06");
|
|
lTarget = GetLocation(oTarget);
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "awmindflayerboss", lTarget);
|
|
|
|
|
|
|
|
}
|
|
|