22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
object oTarget;
|
|
object oSpawn;
|
|
location lTarget;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
oTarget = GetWaypointByTag("WP_SPn_Svcrpse");
|
|
|
|
lTarget = GetLocation(oTarget);
|
|
|
|
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "corpse1", lTarget);
|
|
PlayOldTheme();
|
|
}
|
|
|