20 lines
375 B
Plaintext
20 lines
375 B
Plaintext
|
#include "prc_inc_racial"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
int nRace = MyPRCGetRacialType(oPC);
|
||
|
|
||
|
if (nRace == RACIAL_TYPE_HUMANOID_GOBLINOID)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
|
||
|
|
||
|
/* object oPC=GetPCSpeaker();
|
||
|
string sRace=GetSubRace(oPC);
|
||
|
sRace=GetStringUpperCase(sRace);
|
||
|
if (sRace=="GOBLIN") return TRUE;
|
||
|
return FALSE; */
|
||
|
}
|