PoA_PRC8/_module/nss/has_xp.nss

19 lines
483 B
Plaintext
Raw Permalink Normal View History

2022-10-07 14:20:31 -04:00
//::///////////////////////////////////////////////
//:: 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;
}