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