31 lines
547 B
Plaintext
31 lines
547 B
Plaintext
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);
|
|
|
|
|
|
|
|
}
|
|
|