安装 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(越南语)
Українська(乌克兰语)
报告翻译问题
If I re-enable JNR, it could probably overwrite the vanilla workshop fine; however, I will likely not be able to buy Tycoons again. If I disable JNR Industries with a JNR workshop in my save, I might lose my save.
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_JNR_MANUFACTURY';
The weird part is, the fix for Tycoon is there twice, whereas the fix for Investor (which works fine with JNR afaik?) is there only once.
As in, there are 3 documents of value for this. MonopolyPlus_Units, MonopolyPlus_Tycoons, and MonopolyPlus_JNRCompatibility.
The fix for investor is there in the JNR file and that's it. However, the fix for Tycoon is in the JNR file, as well as the Tycoon file, but not the Units file. Perhaps this is causing some sort of conflict?
I'd have to test it out. Maybe it's as simple as deleting the aforementioned code from the Tycoon file and leave it only in the JNR file.
I can't test it myself rn though so if someone wants to, the path to access is 289070 -> 2479197624 -> Core
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
VALUES ('UNIT_LEU_TYCOON', 'BUILDING_WORKSHOP');
adding
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_JNR_WORKSHOP';
where the Manufactory fix is. Maybe having JNR on replaces normal workshop name with JNR workshop.
INSERT INTO Unit_BuildingPrereqs
(Unit, PrereqBuilding)
SELECT 'UNIT_LEU_TYCOON', BuildingType
FROM Buildings WHERE BuildingType = 'BUILDING_WORKSHOP';
I noticed that this code was only one that was missing.
does it still work? I tried the change as well but if i dont disable jnr industry, i cant buy tycoons.