19 lines
483 B
Plaintext
Raw Permalink Normal View History

//::///////////////////////////////////////////////
//:: 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;
}