PoA_PRC8/module/nss/has_xp.nss
Jaysyn904 128e7e59a4 Initial upload
Initial upload
2022-10-07 14:20:31 -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;
}