11 lines
149 B
Plaintext
11 lines
149 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = TRUE;
|
||
|
if (GetLocalInt(GetPCSpeaker(),"PCLevelMod") > 1 )
|
||
|
iResult = FALSE;
|
||
|
return iResult;
|
||
|
}
|
||
|
|