Page 1 of 1

Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:00 am
by cmnielsen
Hi.

Is there any way (maybe a mod) that allow me to search for a specific production machine? I guess I'm suffering from amnesia, as I cannot remember where I made the production. An example, I have only one machine producing hand grenades, but I can't remember where I put it and I cannot find it anywhere. Is there a way to search for it?

Side question, when is a base large enough to be considered as a mega base?

Have a nice weekend.

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:16 am
by wobbycarly
It might help to enable the map feature that shows the machine recipe. And I think megabase is usually considered 1000 science per minute for 10 hours. But I'm sure that's open to interpretation! :D

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:18 am
by bormand
I dunno about mods, but this little script may help:

Code: Select all

/c for i,e in ipairs(game.surfaces["nauvis"].find_entities_filtered{type='assembling-machine'}) do
    local r = e.get_recipe()
    if r ~= nil and r.name == 'grenade' then
        game.player.print(string.format("[gps=%f,%f]", e.position.x, e.position.y))
    end
end
cmnielsen wrote:
Sat Mar 06, 2021 8:00 am
Side question, when is a base large enough to be considered as a mega base?
Something like 1000 SPM (science packs per minute), usually.

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:20 am
by cmnielsen
Machine recipe is enabled, just can't find it :roll: :roll:

1000 science per minute is that all sience or white only?

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:23 am
by cmnielsen
bormand wrote:
Sat Mar 06, 2021 8:18 am
I dunno about mods, but this little script may help:

I'm not used to scripts, where an I supposed to post it? Only place I know, is how to imoort blueprints ;)

Thank you for helping

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:28 am
by bormand
cmnielsen wrote:
Sat Mar 06, 2021 8:23 am
I'm not used to scripts, where an I supposed to post it?
Press ~ to open chat console, paste script there. It will spam some GPS tags to your chat. Click them and you will see location on the map.

If you need to fine another recipe, replace 'grenade' with something else.

P.S. Commands disable achievements, so you may want to reload the save after that.

Hope it helps.
1000 science per minute is that all sience or white only?
1000 of each pack. Excluding military, probably.

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:35 am
by cmnielsen
thank you for the help :!: :!: :!:

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 8:36 am
by bormand

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 9:03 am
by cmnielsen
YOU are good, none the less. Thank you so much for taking time to help me and others.

Re: Find production on base, amnesia problem ;)

Posted: Sat Mar 06, 2021 11:40 am
by Trific
bormand wrote:
Sat Mar 06, 2021 8:28 am

1000 of each pack. Excluding military, probably.
IMO, excluding military makes the whole thing significantly easier, and it's not a mega- or giga- without all 7.

Re: Find production on base, amnesia problem ;)

Posted: Sun Mar 07, 2021 12:43 pm
by Redpossum
bormand wrote:
Sat Mar 06, 2021 8:36 am
Found some mods that may be useful:

https://mods.factorio.com/mod/BeastFinder
https://mods.factorio.com/mod/WhereIsItMade
Thank you very much! Beastfinder mod is super handy. I can't tell you how many times I have wound up running all over my base looking for that chest full of copper plates, or copper wire, or landfill.