UW2_PRC8/_module/nss/has_5k_xp.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

10 lines
134 B
Plaintext

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