Internazionale
Chieftain
- Joined
- Jun 1, 2018
- Messages
- 1
Hello. I would like to know how to choose which city states go into the Giant Earth TSL map from Hormigas Enhanced Map Pack. I want the game to always load in the same 20 city states, since I want to minimize the RNG in the game. I have spent the past week trying various things, but since I am new to C++ and modding, I have been unsuccessful. Whenever I try to delete more than 4 additional city states from MinorCivilizations in the CityStates folder the game crashes. Also, when I delete city states from MinorCivStartPos folder, the game always loads in less than 20 city states. Another thing that I tried in the CityStates folder is
DELETE FROM MinorCivilizations WHERE Type NOT IN ('MINOR_CIV_ALMATY', 'MINOR_CIV_ANTANANARIVO', 'MINOR_CIV_BUENOS_AIRES', 'MINOR_CIV_CAHOKIA', 'MINOR_CAPE_TOWN', 'MINOR_CIV_CAPE_TOWN', 'MINOR_CIV_COLOMBO', 'MINOR_CIV_HONG_KONG', 'MINOR_CIV_LHASA', 'MINOR_CIV_MANILA', 'MINOR_CIV_MELBOURNE', 'MINOR_CIV_ORMUS', 'MINOR_CIV_PANAMA_CITY', 'MINOR_CIV_QUEBEC_CITY', 'MINOR_CIV_SAMARKAND', 'MINOR_CIV_SYDNEY', 'MINOR_CIV_VANCOUVER', 'MINOR_CIV_ZANZIBAR');
Since I'm new to sql, I don't know if the syntax is correct. Anyways, the game crashes when I do this. The 20 city states that I would like are the ones in the code above. Any help would be greatly appreciated.
DELETE FROM MinorCivilizations WHERE Type NOT IN ('MINOR_CIV_ALMATY', 'MINOR_CIV_ANTANANARIVO', 'MINOR_CIV_BUENOS_AIRES', 'MINOR_CIV_CAHOKIA', 'MINOR_CAPE_TOWN', 'MINOR_CIV_CAPE_TOWN', 'MINOR_CIV_COLOMBO', 'MINOR_CIV_HONG_KONG', 'MINOR_CIV_LHASA', 'MINOR_CIV_MANILA', 'MINOR_CIV_MELBOURNE', 'MINOR_CIV_ORMUS', 'MINOR_CIV_PANAMA_CITY', 'MINOR_CIV_QUEBEC_CITY', 'MINOR_CIV_SAMARKAND', 'MINOR_CIV_SYDNEY', 'MINOR_CIV_VANCOUVER', 'MINOR_CIV_ZANZIBAR');
Since I'm new to sql, I don't know if the syntax is correct. Anyways, the game crashes when I do this. The 20 city states that I would like are the ones in the code above. Any help would be greatly appreciated.