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

12 lines
250 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
string szPlotID = GetLocalString(OBJECT_SELF,"Quest");
int iQuestStatus = GetLocalInt(oPC,"NW_JOURNAL_ENTRY"+szPlotID);
if (iQuestStatus == 7)
{
return TRUE;
}
else return FALSE;
}