UW2_PRC8/_module/nss/has_5k_xp.nss

10 lines
134 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nXP = GetXP(oPC);
if(nXP >=5000)
return TRUE;
else
return FALSE;
}