19 lines
359 B
Plaintext
19 lines
359 B
Plaintext
|
#include "prc_inc_racial"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nRace = GetRacialType(oPC);
|
||
|
|
||
|
if (nRace == RACIAL_TYPE_BROWNIE)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
|
||
|
|
||
|
/* object oPC=GetPCSpeaker();
|
||
|
string sRace=GetSubRace(oPC);
|
||
|
sRace=GetStringUpperCase(sRace);
|
||
|
if (sRace=="BROWNIE") return TRUE;
|
||
|
return FALSE; */
|
||
|
}
|