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
Fix for Multifloor Elevator:
https://steamcommunity.com/sharedfiles/filedetails/?id=1154898843
#1 go to:
...steamapps\workshop\content\244850\1154898843\Data\Scripts\MultifloorElevator\Classes\Elevator.cs
#2 edit and go to line 83:
Replace the line:
IsPowered = Block.ResourceSink.IsPowerAvailable(MyResourceDistributorComponent.ElectricityId, 0.10f);
By:
IsPowered = Block.ResourceSink.SuppliedRatioByType(MyResourceDistributorComponent.ElectricityId) == 1; // Fix due to heavy industry
Fix for CARGO Elevator:
https://steamcommunity.com/sharedfiles/filedetails/?id=1711861968
#1 go to:
...steamapps\workshop\content\244850\1711861968\Data\Scripts\MultifloorCargoElevator\VCZ_MultifloorCargoElevator.cs
#2 edit and go to line 142:
Replace the line:
if (!Elevator_block.ResourceSink.IsPowerAvailable(MyResourceDistributorComponent.ElectricityId, 1.15f)) return;
By:
if (Elevator_block.ResourceSink.SuppliedRatioByType(MyResourceDistributorComponent.ElectricityId) != 1) return;
it took me a couple hours but im stupid when it comes to programing
Yeah I know how I could change it if I would play Singleplayer or would host the Server myself, but I'm hosting it via 4netPlayers and it takes the mods I want per Mod Name and Steam ID of Steam Workshop itself, so my Question would be how or where I could change the Mod File for the Server. :/
Edit:I may have found a Solution but I need to confirm it first before writing it here xD