10 lines
134 B
Plaintext
Raw Permalink Normal View History

int StartingConditional()
{
object oPC = GetPCSpeaker();
int nXP = GetXP(oPC);
if(nXP >=5000)
return TRUE;
else
return FALSE;
}