19 lines
326 B
Plaintext
19 lines
326 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oTarget;
|
||
|
int nInt;
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
oTarget = GetObjectByTag("Radomix9");
|
||
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Radomix9")));
|
||
|
|
||
|
oTarget = GetObjectByTag("Radomix9");
|
||
|
nInt = GetObjectType(oTarget);
|
||
|
oTarget = GetObjectByTag("Radomix9");
|
||
|
DestroyObject(oTarget, 4.0);
|
||
|
|
||
|
}
|