9 lines
190 B
Plaintext
9 lines
190 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
string sRace=GetSubRace(oPC);
|
|
sRace=GetStringUpperCase(sRace);
|
|
if (sRace=="SKELETON") return TRUE;
|
|
return FALSE;
|
|
}
|