Lankhmar_PRC8/_module/nss/walk_away_herist.nss

32 lines
572 B
Plaintext
Raw Permalink Normal View History

2025-04-03 12:54:47 -04:00
void main()
{
object oTarget;
int nInt;
object oPC = GetPCSpeaker();
// Cutscene functions:
BlackScreen(oPC);
oTarget = GetObjectByTag("Heristern");
AssignCommand(oTarget, ActionMoveToObject(GetObjectByTag("WP_Heristern")));
// Unlock and open "cashtorslarg".
oTarget = GetObjectByTag("cashtorslarg");
SetLocked(oTarget, FALSE);
AssignCommand(oTarget, ActionOpenDoor(oTarget));
// Cutscene functions:
FadeFromBlack(oPC);
oTarget = GetObjectByTag("Heristern");
nInt = GetObjectType(oTarget);
oTarget = GetObjectByTag("Heristern");
DestroyObject(oTarget, 3.0);
}