PoA_PRC8/module/nss/has_5k_xp.nss
Jaysyn904 128e7e59a4 Initial upload
Initial upload
2022-10-07 14:20:31 -04:00

10 lines
134 B
Plaintext

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