12 lines
280 B
Plaintext
12 lines
280 B
Plaintext
|
#include "prc_inc_racial"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
if(GetIsDM(GetPCSpeaker()))
|
||
|
{ return TRUE; }
|
||
|
string Subrace = GetStringLowerCase(GetSubRace(GetPCSpeaker()));
|
||
|
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFDROW)
|
||
|
{ return TRUE; }
|
||
|
return FALSE;
|
||
|
}
|