Εγκατάσταση 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