8 lines
228 B
Plaintext
8 lines
228 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sDB = GetLocalString(GetModule(), "DB");
|
||
|
string sVariable = "STOREDXP_" + GetPCPlayerName(GetPCSpeaker());
|
||
|
if (GetCampaignInt(sDB, sVariable) == 0) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|