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

14 lines
375 B
Plaintext

int StartingConditional()
{
object oMod = GetModule();
object oPC = GetPCSpeaker();
string szPlotID = GetLocalString(OBJECT_SELF,"Quest");
int iQuestStatusMod = GetLocalInt(oMod,"NW_JOURNAL_ENTRY"+szPlotID);
int iQuestStatusPC = GetLocalInt(oPC,"NW_JOURNAL_ENTRY"+szPlotID);
if ((iQuestStatusMod >= 1)&&(iQuestStatusPC < 1))
{
return TRUE;
}
else return FALSE;
}