22 lines
326 B
Plaintext
22 lines
326 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
oTarget = GetObjectByTag("Grengos");
|
|
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Fafhrd25")));
|
|
|
|
oTarget = GetObjectByTag("Grengos");
|
|
|
|
int nInt;
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Grengos");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
}
|