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

42 lines
810 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
CreateItemOnObject("kumalsnote", oPC);
//AddJournalQuestEntry("The Secret of Urgaan of Angarngi", 1, oPC, TRUE, FALSE);
AddJournalQuestEntry("CA1 - Swords of the Undercity", 1, oPC, TRUE, FALSE);
object oTarget;
oTarget = GetObjectByTag("ent_st_ctscne2b");
DestroyObject(oTarget, 0.0);
location lTarget;
oTarget = GetWaypointByTag("wp_ho_entry");
lTarget = GetLocation(oTarget);
if (GetAreaFromLocation(lTarget)==OBJECT_INVALID) return;
oTarget=GetFirstFactionMember(oPC, FALSE);
while (GetIsObjectValid(oTarget))
{
AssignCommand(oTarget, ClearAllActions());
AssignCommand(oTarget, ActionJumpToLocation(lTarget));
oTarget=GetNextFactionMember(oPC, FALSE);
}
oTarget = GetObjectByTag("enter_srt_game2");
DestroyObject(oTarget, 0.0);
}