Jarlaxe Baenre
Emperor
Looking at that tooltip, it seems like the Corporation HQ is considered to be a wonder. Does it count towards your maximum number of wonders, and is that intended?
View attachment 486821
Mexico starts with no gold with 1700 start (Argentina get 1200) ! Also, is it intentional that Argentina starts with Despotism while Mexico starts with Democracy? Shouldn't it be the exact opposite? Imperio Mexicano was a short-lived monarchy and the first independent post-colonial state in Mexico. It was the only former colony of the Spanish Empire to establish a monarchy after independence and for a short time, together with the Brazilian Empire, it was one of two European-style empires in the Americas. Perhaps, Democracy for Argentina and Monarchy for Mexico on start?
int CvTeam::getCivilizationResearchModifier() const
{
int iCivModifier;
iCivModifier = GET_PLAYER(getLeaderID()).getModifier(MODIFIER_RESEARCH_COST);
// Maya UP
if (GET_PLAYER(getLeaderID()).getCurrentEra() <= ERA_CLASSICAL)
{
if (getLeaderID() == MAYA) iCivModifier -= 50; // Maya UP
}
// nerf late game China
if (getLeaderID() == CHINA)
{
if (GET_PLAYER(getLeaderID()).getCurrentEra() == ERA_MEDIEVAL) iCivModifier += 15;
if (GET_PLAYER(getLeaderID()).getCurrentEra() >= ERA_RENAISSANCE) iCivModifier += 25;
}
return iCivModifier;
}
// Leoreth: Chinese UP: no penalties for researching less widespread techs until the Renaissance
if (getID() == CHINA && GET_PLAYER((PlayerTypes)getID()).getCurrentEra() < ERA_RENAISSANCE)
{
if (iSpreadModifier > 0) iSpreadModifier = 0;
}
iModifier += iSpreadModifier;
//Leoreth: new Chinese UP: techs not known by anyone get -25% cost
if (getID() == CHINA && GET_PLAYER((PlayerTypes)getID()).getCurrentEra() < ERA_RENAISSANCE)
{
if (iCivsWithTech == 0)
{
iModifier -= 25;
}
}
It's a benefit I was completely unaware of. It's also a penalty I was unaware of. I feel like including this somewhere, even if just in the Civopedia, would help players understand the mod better.It's not their UP, just a benefit they get.
It's a penalty for other players I meant. A penalty I never knew other players had.How is it a penalty for them?
Open it in Notepad++ and convert the EOL to Windows.With the Git version, when I try to open the RFC 600 AD map, I get this error, and the map doesn't work:
Failed to read worldbuilder file "mods\rfc dawn of civilization\privatemaps\rfc 600 ad.civbeyondswordwbsave"
I've fixed it by grabbing the map from a previous version (the file says last modified mid-November) and using that instead.
EOL?Open it in Notepad++ and convert the EOL to Windows.
EOL?
End of what line?Yes, EOL means end of line.
Open up Notepad++ go to Edit then End of Line Conversion and then choose windows, it will then work once you save the fileEnd of what line?