Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Take your time with those mods, we enjoyed them nonetheless, even if there are some small rough edges here and there.
Thank you for still putting time in on this little endeavour. :)
If one can help you, just say so. :D
[Gameplay] ERROR: near "||": syntax error
That one I don't know what causes it. I searched the whole file and non of the lines that include "||" seem's to have any syntax errors. In any case, could you please update the mod with this fixes? It seems to work better now. Also, I've looked at the code for your other mods, I've enabled some for GS and fixed the code on others, as they have similiar issues. I'll be posting in every modpage to help you with the fixes.
[16860.486] [Gameplay] ERROR: Invalid Reference on Modifiers.SubjectRequirementSetId - "ENIGMA_ALBANIA_X_ADJACENT_CENTER_1" does not exist in RequirementSets
[16860.491] [Gameplay] ERROR: Invalid Reference on RequirementArguments.RequirementId - "ENIGMA_ALBANIA_X_ADJACENT_ENCAMPMENT_1" does not exist in Requirements
[16860.496] [Gameplay] ERROR: Invalid Reference on TraitModifiers.ModifierId - "ENIGMA_ALBANIA_UNIT_PRODUCTION_6" does not exist in Modifiers
I fixed it by adding this two lines into Requirements:
SELECT 'ENIGMA_ALBANIA_X_ADJACENT_CENTER_'||Num, 'REQUIREMENT_COLLECTION_COUNT_ATLEAST'
'ENIGMA_ALBANIA_X_ADJACENT_ENCAMPMENT_'||Num, 'REQUIREMENT_COLLECTION_COUNT_ATLEAST'
as you had only referenced ENIGMA_ALBANIA_X_ADJACENT_ but no CENTER nor ENCAMPMENT.
[16479.613] [Gameplay] ERROR: near "ENIGMA_UNIT_ADJACENT_ENCANMPMENT_REQSET": syntax error
This happened because you missed a ' in the code, right in RequirementSetId:
INSERT INTO RequirementArguments
(RequirementId, Name, Value)
SELECT 'ENIGMA_ALBANIA_X_ADJACENT_ENCAMPMENT_'||Num, (here)RequirementSetId', 'ENIGMA_UNIT_ADJACENT_ENCANMPMENT_REQSET'
[Gameplay] ERROR: table Requirements has no column named RequirementSetId
It happened because in the Civilization traits you put the RequirementSetRequirement like this:
INSERT INTO Requirements (should be RequirementSetRequirements)
(RequirementId, RequirementSetId)
SELECT 'ENIGMA_ALBANIA_UNIT_MILITARY_'||UnitType, 'ENIGMA_UNIT_ADJACENT_ENCANMPMENT_REQSET'
FROM Units WHERE FormationClass IS NOT 'FORMATION_CLASS_CIVILIAN';
INSERT INTO Requirements (Here too should be RequirementSetRequirements)
(RequirementId, RequirementSetId)
SELECT 'ENIGMA_ALBANIA_UNIT_MILITARY_'||UnitType, 'ENIGMA_UNIT_ADJACENT_CITY_CENTER_REQSET'
FROM Units WHERE FormationClass IS NOT 'FORMATION_CLASS_CIVILIAN';
I did have a quick question, however. With King Zog's leader bonus, does it provide +5% food per adjacent unit, or +5% growth? I know it says growth, but with the food icon it confused me a bit.