10 lines
209 B
Plaintext
10 lines
209 B
Plaintext
int StartingConditional()
|
|
{
|
|
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELF)
|
|
return TRUE;
|
|
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFELF)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|