PWE_PRC8/_module/nss/chkxp_goa.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

20 lines
514 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName chkxp_goa
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 10/22/2002 11:07:29 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's XP
int iPassed = 0;
if(GetXP(GetPCSpeaker()) >= 10000)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}