12 lines
148 B
Plaintext
12 lines
148 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = TRUE;
|
||
|
|
||
|
if (GetLocalInt(GetPCSpeaker(),"QuestComplete")>0)
|
||
|
iResult=FALSE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|