13 lines
153 B
Plaintext
13 lines
153 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC;
|
|
|
|
iResult = FALSE;
|
|
oPC = GetPCSpeaker();
|
|
if (GetXP(oPC) == 0)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|