9 lines
228 B
Plaintext
9 lines
228 B
Plaintext
int StartingConditional()
|
|
{
|
|
int Gender = GetGender(GetPCSpeaker());
|
|
int class = GetClassByPosition(1, GetPCSpeaker());
|
|
if(Gender == GENDER_MALE && class == CLASS_TYPE_CLERIC)
|
|
{ return TRUE; }
|
|
return FALSE;
|
|
}
|