48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
|
|
void main()
|
|
|
|
{
|
|
|
|
object oTarget;
|
|
int nInt;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
oTarget = GetObjectByTag("Blackie");
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Blackie")));
|
|
|
|
oTarget = GetObjectByTag("Blackie");
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("Blackie");
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl1");
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Blackie")));
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl1");
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl1");
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl2");
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Blackie")));
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl2");
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl2");
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl3");
|
|
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Blackie")));
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl3");
|
|
nInt = GetObjectType(oTarget);
|
|
|
|
oTarget = GetObjectByTag("LankhmarGuardBl3");
|
|
DestroyObject(oTarget, 3.0);
|
|
|
|
}
|