22 lines
357 B
Plaintext
22 lines
357 B
Plaintext
#include "nw_i0_plot"
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("Paucus");
|
|
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Paucus")));
|
|
|
|
oTarget = GetObjectByTag("Paucus");
|
|
|
|
int nInt;
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Paucus");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
PlayOldTheme();
|
|
}
|