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_4");
    if (sAuth != "") return TRUE;
    return FALSE;

}