11 lines
189 B
Plaintext
11 lines
189 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (GetGoodEvilValue(GetPCSpeaker()) > 40 && GetLocalInt(GetPCSpeaker(),"Monstrous") == 0)
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|