tmxk2012917
Prince
So the rationalism is still unlocked in the Renaissance era? i played a game with EE but exploration policy and rationalism did not change their unlocked eras
The next version of R.E.D. should rescale these new units properly.Are you able to at least make EE support the unit rescaling part of RED, even if you don't want to make all the extra models?
The next version of R.E.D. should rescale these new units properly.
local tBuildingClassInCityORS = {}
for row in GameInfo.Building_ClassesNeededInCityOR() do
if not tBuildingClassInCityORS[GameInfoTypes[row.BuildingType]] then
tBuildingClassInCityORS[GameInfoTypes[row.BuildingType]] = { [GameInfoTypes[row.BuildingClassType]] = row.BuildingClassType }
else
tBuildingClassInCityORS[GameInfoTypes[row.BuildingType]][GameInfoTypes[row.BuildingClassType]] = row.BuildingClassType
end
end
function JFD_Building_ClassesNeededInCityOR(playerID, cityID, buildingID)
if tBuildingClassInCityORS[buildingID] then
local pCity = Players[playerID]:GetCityByID(cityID)
for k,v in pairs(tBuildingClassInCityORS[buildingID]) do
if HasBuildingClass(pCity, v) then
return true
end
end
return false
end
return true
end
GameEvents.CityCanConstruct.Add(JFD_Building_ClassesNeededInCityOR)
------------------------------------------------------------
---- Whoward69' BuildingClass in a city check
------------------------------------------------------------
function HasBuildingClass(pCity, sBuildingClass)
for building in GameInfo.Buildings("BuildingClass='" .. sBuildingClass .. "'") do
if (pCity:IsHasBuilding(building.ID)) then
return true
end
end
return false
end
theming wise it would make more sense.Humanism was very much a Rennaisannce thing. The Rennaisannce is generally regarding as being from the late 1300's to the early 1500's. When the term Humanism is used it's in conjunction with Rennaisannce. Humanist ideals emerged and were being implemented in the before mentioned time period of late 1300's well into the 1500's. Notable Rennaisannce Humanist are : Petrach (Regarded as the father of Humanism) (1304-1375), Machiavelli (1469-1527), Bartolomé de las Casas (1484–1566). So it was 'discovered' in the Rennaisannce. Humanist were no longer around, or I should say, most people accepted Humanism in the Enlightenment Era but was not at all a new thing.