heres the link of the thread of "Smoothpack"
http://forums.civfanatics.com/showthread.php?t=412517&highlight=Smoothpack
Joey
http://forums.civfanatics.com/showthread.php?t=412517&highlight=Smoothpack
Joey
Interesting mod. A lot of changes, and makes any location viable with the right tech and buildings. It's kind of confusing how many buildings there are, and even more so the way the tech tree was reorganized.
I like the direction of the mod overall. If I remove/disable the tech tree part, will the buildings all still work or will they be in the wrong techs and such?
Working on CiVUP compatibility. The idea is to include the information for it in the mod, but keep it inactive unless you rename a certain folder (or even dynamic through a database check). And install CiVUP of course. This would mean for instance that national wonders again need the appropriate building in all cities, unless CiVUP is activated, in which case it is 50%, 75% or 100% of cities.
-- Vanilla
INSERT INTO Building_PrereqBuildingClasses (
BuildingType, BuildingClassType, NumBuildingNeeded)
SELECT 'BUILDING_GREAT_HALL', 'BUILDINGCLASS_HALL', '-1'
WHERE NOT EXISTS (SELECT * FROM sqlite_master WHERE name='Building_PrereqBuildingClassesPercentage');
INSERT INTO Building_PrereqBuildingClasses (
BuildingType, BuildingClassType, NumBuildingNeeded)
SELECT 'BUILDING_NEWSPAPER', 'BUILDINGCLASS_PRESS', '-1'
WHERE NOT EXISTS (SELECT * FROM sqlite_master WHERE name='Building_PrereqBuildingClassesPercentage');
-- CiVUP Compatibility
CREATE TABLE IF NOT EXISTS Building_PrereqBuildingClassesPercentage (
BuildingType text,
BuildingClassType text,
PercentBuildingNeeded integer default 0
);
INSERT INTO Building_PrereqBuildingClassesPercentage (
BuildingType, BuildingClassType, PercentBuildingNeeded)
SELECT 'BUILDING_GREAT_HALL', 'BUILDINGCLASS_HALL', '75';
INSERT INTO Building_PrereqBuildingClassesPercentage (
BuildingType, BuildingClassType, PercentBuildingNeeded)
SELECT 'BUILDING_FOREIGN_OFFICE', 'BUILDINGCLASS_PRESS', '75';
Done.No can do at the moment, as IIRC Moriboe, who owns the first page, is on a four month international holiday
Haven't been able to do balance testing before leaving, just looked at the numbers which I thought added up more or less to the ones in vanilla. Though the publics baths take time to get (if at all).I believe it to be more difficult with quite a few powerful buildings in the modern age. Same goes for happiness: if you failed to build the Forbidden Palace, happiness is a dread until you reach Industrial or Modern era.
Sounds great! Though not up to me anymore.This way load order doesn't matter. [...]