Lankhmar_PRC8/_module/nss/blacki_walk_away.nss
Jaysyn904 ebc0c6a9b2 Initial commit
Initial commit [v9.7]
2025-04-03 12:54:47 -04:00

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);
}