安裝 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(越南文)
Українська(烏克蘭文)
回報翻譯問題






Still, many thanks for this mod.
Is there an easy way to switch off the instant research?
I'll have them work on the copyrights...at least they will bring in cash, but at a regular speed.
If disabling the mod, the saved game still runs your code. Checked how to implement it with "Mod Config Reborn"...way too complicated for me.
maybe I need to uninstall and re-install SM, after un-subbing from this, to try to kind of "reset" it.
I don't use the Paradox one. Too much of a pain (:
UPDATE: MAYBE what happened. You have not added the mod through the STEAM workshop but rather through the in game mod manager from Paradox. There is a user by the name of Regal8773 that has stolen my mod and placed it on the Paradox workshop and claimed it as his own. You have probably installed his.
I don't know but when I use even his copyright infrigement version of my mod, it doesnt complain about game version. So I am not sure why you're complains about game version.
As a side note, I have reported regal8773 for plagiarising my mod and once Paradox has removed his mod I will upload mine.
Maybe check that you have the latest version but from what I can see, all if good.
so, why might that be?
You should also use OnMsg.CityStart instead of OnMsg.PostNewMapLoaded to get rid of:
[LUA ERROR] attempt to index a boolean value (global 'UICity')
Mars/Lua/Tech.lua(823): global GrantResearchPoints
...kshop\content\464920\1337852234/Code/instantResearch.lua(14): <>
Or you can just use this, so you don't need to have a timer running every 3000 ticks:
function OnMsg.ResearchQueueChange(city, tech_id)
GrantResearchPoints(city.tech_status[tech_id].cost)
-- updates the researchdlg by toggling it.
if GetDialog("ResearchDlg") then
CloseDialog("ResearchDlg")
OpenDialog("ResearchDlg")
end
end