20 lines
232 B
Plaintext
20 lines
232 B
Plaintext
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;
|
|
}
|
|
|