Initial upload
Initial upload
This commit is contained in:
30
_module/nss/cb_insightmonk.nss
Normal file
30
_module/nss/cb_insightmonk.nss
Normal file
@@ -0,0 +1,30 @@
|
||||
void main()
|
||||
{
|
||||
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
object oTarget;
|
||||
object oSpawn;
|
||||
location lTarget;
|
||||
oTarget = GetWaypointByTag("wp_shofinal_01");
|
||||
|
||||
lTarget = GetLocation(oTarget);
|
||||
|
||||
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "monxie", lTarget);
|
||||
|
||||
oTarget = GetWaypointByTag("wp_shofinal_02");
|
||||
|
||||
lTarget = GetLocation(oTarget);
|
||||
|
||||
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "battletrainer", lTarget);
|
||||
|
||||
oTarget = GetWaypointByTag("wp_shofinal_03");
|
||||
|
||||
lTarget = GetLocation(oTarget);
|
||||
|
||||
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "shogunmaster", lTarget);
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user