14 lines
334 B
Plaintext
14 lines
334 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oModule = GetModule();
|
|
string sDatabase = GetLocalString(oModule, "DB");
|
|
|
|
string sHouse = GetLocalString(oPC, "HouseToSell");
|
|
|
|
string sAuth = GetCampaignString(sDatabase, "H_"+sHouse+"_AUTH_5");
|
|
if (sAuth != "") return TRUE;
|
|
return FALSE;
|
|
|
|
}
|