51 lines
841 B
Plaintext
51 lines
841 B
Plaintext
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
|
||
|
object oTarget;
|
||
|
object oSpawn;
|
||
|
location lTarget;
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
oTarget = GetWaypointByTag("WP_SPn_BGSlayers");
|
||
|
|
||
|
lTarget = GetLocation(oTarget);
|
||
|
|
||
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "rodolfo", lTarget);
|
||
|
|
||
|
oTarget = oSpawn;
|
||
|
|
||
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
||
|
|
||
|
oTarget = GetWaypointByTag("WP_SPn_BGSlayers");
|
||
|
|
||
|
lTarget = GetLocation(oTarget);
|
||
|
|
||
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "daol", lTarget);
|
||
|
|
||
|
oTarget = oSpawn;
|
||
|
|
||
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
||
|
|
||
|
oTarget = GetWaypointByTag("WP_SPn_BGSlayers");
|
||
|
|
||
|
lTarget = GetLocation(oTarget);
|
||
|
|
||
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "marn", lTarget);
|
||
|
|
||
|
oTarget = oSpawn;
|
||
|
|
||
|
AssignCommand(oTarget, ActionStartConversation(oPC, ""));
|
||
|
|
||
|
|
||
|
|
||
|
oTarget = GetObjectByTag("Aster");
|
||
|
|
||
|
DestroyObject(oTarget, 0.0);
|
||
|
|
||
|
|
||
|
}
|
||
|
|