13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
#include "aps_include"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sCDKey = GetPCPublicCDKey( oPC);
|
|
|
|
if (!(GetCampaignInt( "XP", sCDKey) > 1000000)) return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|