26 lines
455 B
Plaintext
26 lines
455 B
Plaintext
/*Script created by Phoenix for BG module: Old Man(OM,om) walks way from PC.*/
|
|
|
|
//Put the script on the actions taken tab in conver.
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("Nelae2");
|
|
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Nelae2")));
|
|
|
|
oTarget = GetObjectByTag("Nelae2");
|
|
|
|
int nInt;
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Nelae2");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
|
|
|
|
}
|