22 lines
394 B
Plaintext
22 lines
394 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
int nInt;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
oTarget = GetObjectByTag("Joriannd");
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Joriannd")));
|
|
|
|
oTarget = GetObjectByTag("Joriannd");
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Joriannd");
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
oTarget = GetObjectByTag("drissius");
|
|
DestroyObject(oTarget, 3.0);
|
|
}
|