Instal Steam
login
|
bahasa
简体中文 (Tionghoa Sederhana)
繁體中文 (Tionghoa Tradisional)
日本語 (Bahasa Jepang)
한국어 (Bahasa Korea)
ไทย (Bahasa Thai)
Български (Bahasa Bulgaria)
Čeština (Bahasa Ceko)
Dansk (Bahasa Denmark)
Deutsch (Bahasa Jerman)
English (Bahasa Inggris)
Español - España (Bahasa Spanyol - Spanyol)
Español - Latinoamérica (Bahasa Spanyol - Amerika Latin)
Ελληνικά (Bahasa Yunani)
Français (Bahasa Prancis)
Italiano (Bahasa Italia)
Magyar (Bahasa Hungaria)
Nederlands (Bahasa Belanda)
Norsk (Bahasa Norwegia)
Polski (Bahasa Polandia)
Português (Portugis - Portugal)
Português-Brasil (Bahasa Portugis-Brasil)
Română (Bahasa Rumania)
Русский (Bahasa Rusia)
Suomi (Bahasa Finlandia)
Svenska (Bahasa Swedia)
Türkçe (Bahasa Turki)
Tiếng Việt (Bahasa Vietnam)
Українська (Bahasa Ukraina)
Laporkan kesalahan penerjemahan






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