15 lines
176 B
Plaintext
15 lines
176 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
int iDone;
|
||
|
|
||
|
iDone = GetLocalInt(GetPCSpeaker(),"QuestDone");
|
||
|
iResult = FALSE;
|
||
|
|
||
|
if (iDone == 1)
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|
||
|
|