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

19 lines
483 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName has_xp
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 3/11/2009 1:05:27 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPC = GetPCSpeaker();
int nXP = GetCampaignInt("STORED_XP", GetPCPublicCDKey(oPC), GetModule());
if(nXP>0)
return TRUE;
else
return FALSE;
}