39 lines
799 B
Plaintext
39 lines
799 B
Plaintext
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
|
||
|
object oTarget;
|
||
|
int nInt;
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
oTarget = GetObjectByTag("Mala");
|
||
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Mala")));
|
||
|
|
||
|
oTarget = GetObjectByTag("Mala");
|
||
|
nInt = GetObjectType(oTarget);
|
||
|
|
||
|
oTarget = GetObjectByTag("Mala");
|
||
|
DestroyObject(oTarget, 3.0);
|
||
|
|
||
|
oTarget = GetObjectByTag("Samanol");
|
||
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Mala")));
|
||
|
|
||
|
oTarget = GetObjectByTag("Samanol");
|
||
|
nInt = GetObjectType(oTarget);
|
||
|
|
||
|
oTarget = GetObjectByTag("Samanol");
|
||
|
DestroyObject(oTarget, 3.0);
|
||
|
|
||
|
oTarget = GetObjectByTag("Jereyk");
|
||
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Mala")));
|
||
|
|
||
|
oTarget = GetObjectByTag("Jereyk");
|
||
|
nInt = GetObjectType(oTarget);
|
||
|
|
||
|
oTarget = GetObjectByTag("Jereyk");
|
||
|
DestroyObject(oTarget, 3.0);
|
||
|
|
||
|
}
|