Files
HeroesStone_PRC8/_module/nss/de1_wayq2_f.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

19 lines
589 B
Plaintext

/////////////////////////////////////
// Dragon's Edge
// by Charly Carlos
/////////////////////////////////////
// When a PC enters the trigger and the Jail Quest is done Warden Fratz will converse with the PC.
/////////////////////////////////////
void main()
{
object oPC = GetEnteringObject();
object oFratz = GetObjectByTag("WardenFratz");
if (GetIsPC(oPC))
{
if ((GetLocalInt(GetModule(), "nWaymootQuest2")== 6) || (GetLocalInt(GetModule(), "nWaymootQuest2")== 7))
{
AssignCommand(oFratz, ActionStartConversation(oPC));
}
}
}