19 lines
357 B
Plaintext
19 lines
357 B
Plaintext
#include "nw_i0_plot"
|
|
void main()
|
|
{
|
|
// Set the variables
|
|
SetLocalInt(GetPCSpeaker(), "duchlsgd", 1);
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
object oSpawn;
|
|
location lTarget;
|
|
oTarget = GetWaypointByTag("WP_SPn_DuchGrd");
|
|
|
|
lTarget = GetLocation(oTarget);
|
|
|
|
oSpawn = CreateObject(OBJECT_TYPE_CREATURE, "duchalsguard", lTarget);
|
|
PlayOldTheme();
|
|
}
|