14 lines
236 B
Plaintext
14 lines
236 B
Plaintext
|
#include "ar_inc_pcspawn"
|
||
|
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
string sSubRace=GetStringLowerCase(GetSubRace(oPC));
|
||
|
int iResult;
|
||
|
iResult= sSubRace==AR_SUBRACE_VILLICHI ? TRUE: FALSE;
|
||
|
return iResult;
|
||
|
}
|
||
|
|
||
|
|