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
It does not come with buildings - it is just a small plot in the ground - so use it in conjunction with any asset of your choosing.
https://steamcommunity.com/sharedfiles/filedetails/?id=1978047222
That's not what I mean...I mean editing the code so I can change what an industry recieves and produces. I already know about freestyle industries, but that is in the game. Not in the code...
Thanks anyway.
Cheers,
Chris.
I did it...I have changed the entire "Complete Industry Mod". Took me four days of editing and testing, but now it's done. Wasn't that hard after all, it just takes time, specially with a large mod like that. Of course I can't release it because it's not my mod, but you can see what I have changed in it so far on the release-page. The original mod (by Philipsz) can be found here:
https://www.transportfever.net/filebase/entry/7346-complete-industry-mod-beta/#comment62765
Is there a max of cargo's that can go in and out of a factory ? I mean I have seen import-factories that can produce a dozen cargo's and nothing goes wrong there, so how does this code work ?
It works with this:
order = 1016,
placementParams = {
buildOrder = 9,
initWeight = 1,
tags = { "INPUT_TYRES", "INPUT_GALVANISED_STEEL", "INPUT_GLASS", "INPUT_TEXTILES"},
distanceWeights = {
INPUT_CARS = 1,
INPUT_GALVANISED_STEEL = -1,
INPUT_TYRES = -1,
INPUT_GLASS = -1,
INPUT_BATTERIES = -1,
INPUT_TEXTILES = -1,
},
},
}
local stockListConfig = {
stocks = { "GALVANISED_STEEL", "TYRES", "GLASS", "BATTERIES", "TEXTILES" },
rule = { input = { { 1,1,1,1,1 } }, output = { CARS = 2 }, capacity = 500 },
}
But not with this:
order = 1016,
placementParams = {
buildOrder = 9,
initWeight = 1,
tags = { "INPUT_TYRES", "INPUT_GALVANISED_STEEL", "INPUT_GLASS", "INPUT_TEXTILES"},
distanceWeights = {
INPUT_CARS = 1,
INPUT_WASTE = 1,
INPUT_GALVANISED_STEEL = -1,
INPUT_TYRES = -1,
INPUT_GLASS = -1,
INPUT_BATTERIES = -1,
INPUT_TEXTILES = -1,
INPUT_MACHINES = -1,
},
},
}
local stockListConfig = {
stocks = { "GALVANISED_STEEL", "TYRES", "GLASS", "BATTERIES", "TEXTILES", "MACHINES" },
rule = { input = { { 1,1,1,1,1,1 } }, output = { CARS = 2, WASTE = 2 }, capacity = 500 },
}
Does anybody knows this ?
https://steamcommunity.com/workshop/discussions/18446744073709551615/?appid=1066780