14 lines
335 B
Plaintext
14 lines
335 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_10");
|
||
|
if (sAuth != "") return TRUE;
|
||
|
return FALSE;
|
||
|
|
||
|
}
|