11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetGoodEvilValue(GetPCSpeaker()) < 40)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|