安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题






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.