Item Network SA

by djmalk

This mod adds a network for transporting items and fluids. Now with QUALITY support.

Tweaks
2 months ago
2.0
830
Logistics Fluids Logistic network Storage Cheats

i Enjoying this mod enormously

4 months ago

I've always hit dead ends in every run, this is the first time I was able to unlock everything in the game and get to the shattered planet. It's as cheaty as it gets, but whatever, The logistics involved with a clean run are mind-boggling. I will try a default and unmodded run again, but I'm going to enjoy the ease of playing with this mod first.

I do have a request though, I wonder if you could add support for Mythic quality? I've been hacking it in myself so far, but It makes updating the mod annoying because I always have to go mess around in NetworkChestGUI.lua.

local qualities = {
"normal", "uncommon", "rare", "epic", "legendary", "mythic"
}

quality_flow.add{
type = "sprite-button",
name = "quality_select_all",
sprite = "utility/any_quality",
tooltip = "Add all 6 quality tiers",
style = "slot_button",
toggled = (selected == "all"),
tags = {
event = "select_quality_gui",
quality = "all"
}
}

if selected_quality == "all" then
  local qualities = {"normal", "uncommon", "rare", "epic", "legendary", "mythic"}

UIConstants.lua

M.QUALITY_COLORS = {
normal = "white",
uncommon = "green",
rare = "blue",
epic = "purple",
legendary = "orange"
mythic = "cyan"
}

data.lua

local qualities = { "uncommon", "rare", "epic", "legendary", "mythic" }

and then I have to go steal the mythic.png from the other mod and add it to yours. it would be awesome if it was included conditionally somehow, if mythic quality exists, it is also unlocked in your mod. I understand it's pretty niche and most players don't use it though.

Anyway, thanks for the awesome mod.

the mythic mod I'm using is https://mods.factorio.com/mod/VFSteeperQualityWithMythic

4 months ago

Hello there! Right now, there are no new patches planned, so you should be fine to mod it in yourself. If I release another bugfix or feature patch in the future, I’ll keep your request in mind. There haven’t been any bug reports lately, so this build should be stable. I’m currently busy with real life and other projects, so no new patches are planned for now.

4 months ago

Added mythic quality and moved all quality code into Quality.lua. To add new qualities, you only need to define the color and provide the PNG. I can’t keep track of all the custom qualities, so this makes it easier for modders like you to add quality support to your own mod list.

4 months ago

Awesome dude! Thanks so much!

New response