Initial upload
Initial upload
This commit is contained in:
51
_module/nss/cb_minddeath.nss
Normal file
51
_module/nss/cb_minddeath.nss
Normal file
@@ -0,0 +1,51 @@
|
||||
#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);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user