12 lines
129 B
Plaintext
12 lines
129 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetXP(GetPCSpeaker()) == 0)
|
|
iResult=TRUE;
|
|
|
|
return iResult;
|
|
}
|