20 lines
231 B
Plaintext
20 lines
231 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC;
|
|
string sTarget;
|
|
int iResult;
|
|
int iQuest;
|
|
int iOverall;
|
|
|
|
oPC = GetPCSpeaker();
|
|
iQuest = GetLocalInt(oPC,"NHQuest");
|
|
|
|
iResult = FALSE;
|
|
|
|
if (iQuest == 6)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|
|
|