10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetLocalInt(GetModule(),"MainQuest") >=99)
|
|
iResult=TRUE;
|
|
return iResult;
|
|
}
|