Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción






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