Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
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