20 lines
514 B
Plaintext
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;
|
|
}
|