There is also VirtualBox under Linux. There might be a version for Mac too. And it's free! That's what I'm using to make the bot working ;)
Quote:
if ((m_Player.Towns[m_CurrentTownIntern].Population < 10) &&
!m_Player.Towns[m_CurrentTownIntern].getIngameBuildingQueue().Contains("farm")){int j;}
for ( j = 0; j < m_Player.Towns[m_CurrentTownIntern].Buildings.Count; j++)if (m_Player.Towns[m_CurrentTownIntern].Buildings[j].DevName=="farm") break;if (m_Player.Towns[m_CurrentTownIntern].Buildings[j].Upgradable)
{l_Building = m_Player.Towns[m_CurrentTownIntern].Buildings[j].DevName;}
else
{if (m_Player.Towns[m_CurrentTownIntern].Buildings[j].Level < m_Player.Towns[m_CurrentTownIntern].Buildings[j].MaxLevel)}l_Building = "";
I will make the font a bit smaller in the next release but I think it also depends on your pc settings because mine are displayed correct up to 999.Quote:
Ability to order the cities in the display;
Quote:
//Automatic mode activad
int l_LowestLevel = 41;
int l_Level = 0;
string l_BuildingTemp = "";
// place for upgradable buildings
StringCollection UpgradableBuildings = new StringCollection();
for (int i = 0; i < m_Player.Towns[m_CurrentTownIntern].Buildings.Count; i++){// randomize available buildings
l_BuildingTemp = m_Player.Towns[m_CurrentTownIntern].Buildings[i].DevName;
l_Level = m_Player.Towns[m_CurrentTownIntern].Buildings[i].Level + m_Player.Towns[m_CurrentTownIntern].countIngameBuildingQueueByName(l_BuildingTemp);
if (m_Player.Towns[m_CurrentTownIntern].Buildings[i].Upgradable){}
if (l_Level < m_Player.Towns[m_CurrentTownIntern].Buildings[i].TargetLevel){}
if(l_Level < l_LowestLevel){}
l_Building = l_BuildingTemp;
l_LowestLevel = l_Level;
// store upgradable building
UpgradableBuildings.Add(l_Building);
}
Random l_rnd = new Random();
if (UpgradableBuildings.Count>1)
l_Building = UpgradableBuildings[l_rnd.Next(0,UpgradableBuildings.Count)];
l_rnd = null;
UpgradableBuildings = null;
Thanks ;)Quote:
Added the scheduler to the feature request post.
My cities are called "City 1", "City 2", "City 3", and so on up to "City 40".Quote:
What do you mean with this one: Ability to order the cities in the display;
Ok. So I will try to play with my settings.Quote:
I will make the font a bit smaller in the next release but I think it also depends on your pc settings because mine are displayed correct up to 999.