8 lines
230 B
Plaintext
8 lines
230 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sDB = GetLocalString(GetModule(), "DB");
|
||
|
string sTown = GetLocalString(GetArea(OBJECT_SELF), "Town");
|
||
|
if (GetCampaignInt(sDB, sTown+"_ECONOMY") >= 7) return TRUE;
|
||
|
return FALSE;
|
||
|
}
|