15 lines
394 B
Plaintext
15 lines
394 B
Plaintext
|
#include "x4_inc_functions"
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oModule = GetModule();
|
||
|
|
||
|
string sDatabase = GetLocalString(oModule, "DB");
|
||
|
string sAgencyGold = GetStringLowerCase(DBCharacterSpecificVariable(oPC, "AgencyGold"));
|
||
|
int nAgencyGold = GetCampaignInt(sDatabase, sAgencyGold);
|
||
|
|
||
|
if (nAgencyGold == 0) return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
}
|