It would be pretty great to have little planet icons on the alerts, or something similar, to make it clear which planet an alert originates from.
In my current playthrough I'm constantly noticing that something is being attacked, but I can't tell at a glance whether it's a planet I really need to ...
Search found 761 matches
- Thu Dec 11, 2025 3:32 pm
- Forum: Ideas and Suggestions
- Topic: Add planet icons next to alerts and seperate them by planet.
- Replies: 3
- Views: 548
- Tue Dec 09, 2025 5:06 pm
- Forum: Questions, reviews and ratings
- Topic: Earth Mod Getting into Space.
- Replies: 3
- Views: 312
Re: Earth Mod Getting into Space.
The mod description says
In Base Factorio, you can't go to space.Base Factorio v2 only - no Space Age support.
- Sun Dec 07, 2025 8:51 am
- Forum: Duplicates
- Topic: Denser belt items with manual drop [2.0.72]
- Replies: 2
- Views: 201
Re: Denser belt items with manual drop [2.0.72]
Isn't it related to this?
https://www.factorio.com/blog/post/fff-231
The solution was, that whenever there is any gap bigger than the standard distance between items on a belt, item can be inserted there and for a (usually) brief moment, the items are squashed together closer than usual. But ...
https://www.factorio.com/blog/post/fff-231
The solution was, that whenever there is any gap bigger than the standard distance between items on a belt, item can be inserted there and for a (usually) brief moment, the items are squashed together closer than usual. But ...
- Fri Dec 05, 2025 4:41 pm
- Forum: Ideas and Suggestions
- Topic: Map view bookmarks hotkeys.
- Replies: 2
- Views: 1309
Re: Map view bookmarks hotkeys.
This could work nicely with the pin feature, where Control-1 through Control-0 would let you go to your first ten pins.
- Thu Dec 04, 2025 4:34 pm
- Forum: Mod portal Discussion
- Topic: Need help about my mods showing zero downloads ingame.
- Replies: 9
- Views: 711
Re: Need help about my mods showing zero downloads ingame.
It's some peculiarity to the search results, since the mod pages show the number of downloads.
Maybe what's meant by the caching is that the search results are cached.
Maybe the search result updating is stuck somehow.
Maybe what's meant by the caching is that the search results are cached.
Maybe the search result updating is stuck somehow.
- Wed Dec 03, 2025 7:45 am
- Forum: Translations
- Topic: Czech language error
- Replies: 6
- Views: 443
Re: Czech language error
I showed ChatGPT the picture, and it said:
The line “Znečištění pohlcování: 1.84/min na sektor” is not natural Czech.
The problem is word order.
Czech normally puts the thing being consumed/absorbed first, and the process second.
So it should be:
„Pohlcování znečištění“ = absorption of ...
The line “Znečištění pohlcování: 1.84/min na sektor” is not natural Czech.
The problem is word order.
Czech normally puts the thing being consumed/absorbed first, and the process second.
So it should be:
„Pohlcování znečištění“ = absorption of ...
- Tue Dec 02, 2025 10:07 am
- Forum: Frequently Suggested / Link Collections
- Topic: Improved Vehicle Control
- Replies: 11
- Views: 10237
Re: Improved Vehicle Control
There is a mod which perfectly solves this issue. It's called Vehicle Snap. Please integrate it into vanilla.
No need for complex solutions, or breaking changes here.
Snapping has been done already, as of April 2025:
https://forums.factorio.com/viewtopic.php?p=670413#p670413
Minor ...
- Thu Nov 20, 2025 11:22 am
- Forum: General discussion
- Topic: Gleba!
- Replies: 22
- Views: 2688
Re: Gleba!
I don't see a benefit to mixing the positivity of this thread with the negativity of that one.
- Thu Nov 20, 2025 10:42 am
- Forum: General discussion
- Topic: Gleba!
- Replies: 22
- Views: 2688
Re: Gleba!
I enjoy Gleba now, but my initial frustration with it was based on a single fundamental error:
Bots.
After Nauvis -> Fulgora -> Vulcanus, I was using a lot of bots. So I initially started Gleba by sending down a bunch of stuff, and then laying down a bunch of assembly machines with requester and ...
Bots.
After Nauvis -> Fulgora -> Vulcanus, I was using a lot of bots. So I initially started Gleba by sending down a bunch of stuff, and then laying down a bunch of assembly machines with requester and ...
- Tue Nov 18, 2025 4:22 pm
- Forum: Gameplay Help
- Topic: I decided to play with the standard settings, but with the "Narrow World" option
- Replies: 9
- Views: 675
Re: I decided to play with the standard settings, but with the "Narrow World" option
If you're choosing to play Ribbon World, it's not the devs playing an evil joke on you. You're playing the evil joke on yourself.Dejsving wrote: Tue Nov 18, 2025 10:05 am I would like the developers to put some kind of rule inside the game that will not allow the generation to make such an evil joke on the player.
- Sun Nov 16, 2025 10:38 am
- Forum: Off topic
- Topic: [Signals][Space Age] Sorting Logic of Signals on Circuit Network in Factorio Space Age 2.0 :: Explained
- Replies: 12
- Views: 9229
Re: [Signals][Space Age] Sorting Logic of Signals on Circuit Network in Factorio Space Age 2.0 :: Explained
And to be fair, it's not as though humans don't disseminate tons of incorrect information as well.
So maybe artificially intelligence mimics us too accurately.
So maybe artificially intelligence mimics us too accurately.
- Wed Nov 12, 2025 9:29 am
- Forum: F.A.R.L
- Topic: F.A.R.L breaks with my mod "Workbench" - I may have fixed..
- Replies: 4
- Views: 4637
Re: F.A.R.L breaks with my mod "Workbench" - I may have fixed..
sicky337, I realize you're probably trying to ask politely, but the way you're asking is in fact rude.
"Would you be so kind as to update it please?" is the way native speakers request something sarcastically .
It carries the connotation "I can't believe I even have to ask this; you obviously ...
"Would you be so kind as to update it please?" is the way native speakers request something sarcastically .
It carries the connotation "I can't believe I even have to ask this; you obviously ...
- Wed Nov 05, 2025 5:31 pm
- Forum: Gameplay Help
- Topic: "2" is considered False when using AND/OR combinators
- Replies: 4
- Views: 527
Re: "2" is considered False when using AND/OR combinators
Mabbus, you do know that AND/OR/XOR are bitwise, not boolean, right?
If you do A=5 AND B=6 and output as C, you'll get C=4. This is because the bit positions are 1, 2, 4, 8, 16... So 5 is 1 + 4, and 6 is 2 + 4, so the 4 is what they have in common. If you use A=5 OR B=6 -> C, you'll get C=7. If you ...
If you do A=5 AND B=6 and output as C, you'll get C=4. This is because the bit positions are 1, 2, 4, 8, 16... So 5 is 1 + 4, and 6 is 2 + 4, so the 4 is what they have in common. If you use A=5 OR B=6 -> C, you'll get C=7. If you ...
- Fri Oct 31, 2025 7:05 am
- Forum: Translations
- Topic: [2.0.72] Map search is giving inconsistent result
- Replies: 5
- Views: 1090
Re: [2.0.72] Map search is giving inconsistent result
Because it should show the "Minerai d'uranium" matches when you search for uranium with the apostrophe, but it doesn't.Shirasik wrote: Fri Oct 31, 2025 5:05 am Search engine looks for specified string. You specified single quote character so search engine does look for it too. How this is a bug?
- Fri Oct 31, 2025 7:02 am
- Forum: General discussion
- Topic: Why is the Quality mod required for Space Age?
- Replies: 13
- Views: 1819
Re: Why is the Quality mod required for Space Age?
I'd guess, it's a dependency issue.
space age needs quality, because of recyclers for fulgora.
when you do vanilla with quality, you need recyclers, too.
recyclers can't be in space age only, so they are inside the quality mod.
Solution would be to extract recyclers as own mod, which can be used ...
- Thu Oct 30, 2025 7:51 pm
- Forum: General discussion
- Topic: Why is the Quality mod required for Space Age?
- Replies: 13
- Views: 1819
Why is the Quality mod required for Space Age?
From time to time people complain about the Quality mod, and an obvious solution, if they don't like it, is to play without it.
Except that if they're playing Space Age, they can't. Quality is marked as a required mod for Space Age.
My question is: Why?
It seems like you can finish Space Age ...
Except that if they're playing Space Age, they can't. Quality is marked as a required mod for Space Age.
My question is: Why?
It seems like you can finish Space Age ...
- Thu Oct 30, 2025 7:37 pm
- Forum: General discussion
- Topic: "Quality" almost single-handedly ruined my love of the game, here's how I pushed through that mental block
- Replies: 31
- Views: 3689
Re: "Quality" almost single-handedly ruined my love of the game, here's how I pushed through that mental block
Next time when I visit a restaurant I'll tell them that I don't drink beer and I don't like that they have beer on their menue. Sure, I could just not order it, BUT it feels like that beer is staring at me ;-)
Really, you want an option for optional stuff ??????
To be fair, the Quality mod is ...
- Thu Oct 30, 2025 3:59 pm
- Forum: Technical Help
- Topic: Gleba invisible legs.
- Replies: 3
- Views: 312
Re: Gleba invisible legs.
Might help if you listed all the mods you're using...
- Sun Oct 26, 2025 5:59 pm
- Forum: Gameplay Help
- Topic: any one have a base I can use?
- Replies: 6
- Views: 575
Re: any one have a base I can use?
This might be worth looking at. It gives you a big pack of stuff to start with, which might make the start less painful:
https://mods.factorio.com/mod/MyQuickStart
https://mods.factorio.com/mod/MyQuickStart
- Sun Oct 26, 2025 5:47 pm
- Forum: Gameplay Help
- Topic: any one have a base I can use?
- Replies: 6
- Views: 575
Re: any one have a base I can use?
I like that you gave me those mods I know they exist but its not the speed that I build as I can play without them its needing to go through the really early game making slow progress to get chemical science.
Sure, but especially if you've played the game before and have a lot of blueprints ...