安装 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(越南语)
Українська(乌克兰语)
报告翻译问题








https://psteamcommunity.yuanyoumao.com/workshop/filedetails/discussion/1312585482/3247565033770097645/#c1694969361102406385
Edit: Found savefiles and logs from a clean test back in October: https://www.dropbox.com/s/swcwbj3vcdxbr7d/Logs-191028-Clean%20logs%20of%20MOCC.7z?dl=0
no other mods that change the UI in use.
No issues with upgrading unit with this mod.
Explanation
The issue is caused by JNR_GOV_MOCC_SPEC_OPS_ATTACK which introduces flanking bonus. This modifier needs an argument called Percent, at least that is what already exists in the game (there are 4 modifiers that use this effect). However, JNR put Amount here and BRS cannot find Percent and breaks.
Solution
In JNR's mod, file UC_GP_UnitAbilities.sql, Line 63
VALUES ('JNR_GOV_MOCC_SPEC_OPS_ATTACK', 'Amount', 150),
should be
VALUES ('JNR_GOV_MOCC_SPEC_OPS_ATTACK', 'Percent', 150),
Thank you most kindly, sir! Should I put forward this to JNR?
change line 1900 in the ReportScreen.lua:
Re: line 3945
This line means that there is a modifier with effect EFFECT_GRANT_ABILITY and wrongly defined Arguments. You may be running a mod with an incorrect Ability modifier. Otherwise you would not have such an error. BRS is also good for spotting such problems, and such patching as you propose ofc removes the signs of the but does not remove its cause.