generated from Jaysyn/ModuleTemplate
12 lines
250 B
Plaintext
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;
|
|
}
|