Ancordia_PRC8/_module/nss/house_nokeptgold.nss

15 lines
394 B
Plaintext
Raw Permalink Normal View History

2023-09-21 19:51:32 -04:00
#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;
}