EN4_PRC8/_module/nss/qst_cq1_c2.nss

20 lines
232 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
object oPC;
string sTarget;
int iResult;
int iQuestStep;
oPC = GetPCSpeaker();
iQuestStep = GetLocalInt(oPC,"QuestStep");
iResult = FALSE;
if (iQuestStep == 1)
iResult = TRUE;
return iResult;
}