Schall Belt Configuration


A minimalistic mod allowing changing vanilla belt settings, including belt speed and underground belt max distance. Also adds options on unlocking loaders. Supports mods “Deadlock's Stacking Beltboxes & Compact Loaders” and “Space Exploration”. (Locale: English, Deutsch, 正體中文, 简体中文, Português Brasileiro)

Tweaks
3 years ago
0.16 - 1.1
3.64K
Logistics

g [Solved] Deadlock Crating Support

3 years ago

Can you add support for this mod?

https://mods.factorio.com/mod/DeadlockCrating

I think you just need to multiply the crafting speed on the 3 tiers of crating machines proportionally.

3 years ago

Can you add support for this mod?

https://mods.factorio.com/mod/DeadlockCrating

I think you just need to multiply the crafting speed on the 3 tiers of crating machines proportionally, given that you already support the loaders from this mod https://mods.factorio.com/mod/deadlock-beltboxes-loaders

3 years ago

Here's a patch:

diff --git a/data-updates.lua b/data-updates.lua
index f238ae2..9193c7d 100644
--- a/data-updates.lua
+++ b/data-updates.lua
@@ -44,6 +44,11 @@ else
dr["furnace"]["express-transport-belt-beltbox"].crafting_speed = cfg1.speed[3] * 32
end
end
+ if mods["DeadlockCrating"] then
+ dr["assembling-machine"]["deadlock-crating-machine-1"].crafting_speed = cfg1.speed[1] * 32
+ dr["assembling-machine"]["deadlock-crating-machine-2"].crafting_speed = cfg1.speed[2] * 32
+ dr["assembling-machine"]["deadlock-crating-machine-3"].crafting_speed = cfg1.speed[3] * 32
+ end
-- Support "Space Exploration" mod
if mods["space-exploration"] then
dr["transport-belt"]["se-space-transport-belt"].speed = cfg1.speed[3]
diff --git a/info.json b/info.json
index 676fd18..c72090c 100644
--- a/info.json
+++ b/info.json
@@ -8,5 +8,5 @@
"contact": "",
"description": "A minimalistic mod allowing changing vanilla belt settings, including belt speed and underground belt max distance.\nAlso adds options on unlocking loaders.\nSupports mods <E2><80><9C>Deadlock's Stacking Beltboxes & Compact Loaders<E2><80><9D> and <E2><80><9C>Space Exploration<E2><80><9D>.",
"factorio_version": "0.18",
- "dependencies": ["base >= 0.18.0", "? deadlock-beltboxes-loaders", "? space-exploration", "(?) Krastorio"]
+ "dependencies": ["base >= 0.18.0", "? deadlock-beltboxes-loaders", "? space-exploration", "(?) Krastorio", "? DeadlockCrating"]
}

3 years ago

Yes, certainly it can be done, especially when you are providing the code.
New versions 0.17.9 / 0.18.4 / 1.0.0 are all including your code.
(I have applied it to 0.17.9 too, as 0.17 version of Deadlock's Crating Machine seems not having name or speed changes, according to its changelog.)

3 years ago

Thank you very much. :)

New response