34 lines
466 B
Plaintext
34 lines
466 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oTarget;
|
|
|
|
oTarget = GetObjectByTag("Shelinar");
|
|
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Shelinar")));
|
|
|
|
oTarget = GetObjectByTag("Shelinar");
|
|
|
|
int nInt;
|
|
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Shelinar");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
|
|
oTarget = GetObjectByTag("boriin");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
|
|
oTarget = GetObjectByTag("andog");
|
|
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
}
|