Re: [MOD 0.12.x, 0.13.x] Flow Control
Posted: Thu Oct 27, 2016 2:56 pm
Seems its boblogistics doing it, I also note that boblogistics renames pipe into Iron pipe. Does that have something to do with it?
www.factorio.com
https://forums.factorio.com/
Code: Select all
pipe_elbow.minable
Code: Select all
{mining_time = 1, result = "iron-pipe"}
Code: Select all
for k,v in pairs(new_pipes) do data:extend({v.entity,v.recipe,v.item}) end
data.raw[pipe_type]["pipe-straight"].minable.result = "pipe-straight"
data.raw[pipe_type]["pipe-junction"].minable.result = "pipe-junction"
data.raw[pipe_type]["pipe-elbow"].minable.result = "pipe-elbow"
I recall reading somewhere that modders can't really add hotkeys or anything like that. A tool with a GUI would probably be an option but it'd probably be clunkier than the current system on top of being quite a bit more complicated to handle. Also I see one flaw with changing the pipes after they're placed as well. If you're trying to deal with piping around another network then the two are going to run into each other until after you've switched the pieces which would result in getting the wrong fluid stuck in the network.EstebanLB wrote:I've just tested the mod and while doing so I've had a revelation. Suddenly I lost control of my body and a vision appeared in front of me, it was the LUAGod. He told me that instead of separete recipes and items for each pipe, a hot-key controlled function could be used to switch between the different pipes once placed, the base game pipe, or a moded one.
Using the Side Inserted mod of yours gave me that idea, is it possible or even convenient?
Oh, can they? Either that must have changed without me noticing it or I might be managing to mix it up with another game and not realizing it then.GotLag wrote:Hotkeys can be done.
It's called custom-input: http://pastebin.com/7upDfQKgAlice3173 wrote:Oh, can they? Either that must have changed without me noticing it or I might be managing to mix it up with another game and not realizing it then.
Try Side inserters: https://mods.factorio.com/mods/GotLag/Side%20InsertersAlice3173 wrote:Oh, can they? Either that must have changed without me noticing it or I might be managing to mix it up with another game and not realizing it then.GotLag wrote:Hotkeys can be done.