18 lines
352 B
Plaintext
18 lines
352 B
Plaintext
#include "prc_inc_racial"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nRace = GetRacialType(oPC);
|
|
|
|
if (nRace == RACIAL_TYPE_WEMIC)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
/* object oPC=GetPCSpeaker();
|
|
string sRace=GetSubRace(oPC);
|
|
sRace=GetStringUpperCase(sRace);
|
|
if (sRace=="WEMIC") return TRUE;
|
|
return FALSE; */
|
|
}
|