TL;DR
Add option to search through installed mods
What ?
Add button to search mods when browsing installed mods. Like when you downloading new mods.
Why ?
When you have installed dozens of mods and want to enable/disable some then it takes to find them. We need that time because the factory ...
Search found 38 matches
- Tue Jun 11, 2019 2:46 pm
- Forum: Ideas and Suggestions
- Topic: Add option to search through installed mods
- Replies: 0
- Views: 692
- Thu Sep 06, 2018 11:30 am
- Forum: Modding help
- Topic: Order
- Replies: 19
- Views: 6409
Re: Order
Much better now.Bilka wrote:I modifed https://wiki.factorio.com/Types/Order to do something like that, please tell me if the page is more understandable now.
- Wed Sep 05, 2018 7:58 pm
- Forum: Modding help
- Topic: Order
- Replies: 19
- Views: 6409
Re: Order
So every prototype had some order letter and then based of that letter it is alphabrtical order. Thanks for explanation. I think that is better than what is on wiki because wiki says nothing.
Overall, this results in an alphabetical order.
I'm sorry if I'm being dense, but how is what I ...
- Wed Sep 05, 2018 4:46 pm
- Forum: Modding help
- Topic: Order
- Replies: 19
- Views: 6409
Re: Order
I dont know if I am stupid but I dont get it.
He's saying that the order string is just "a string". There's nothing special about it. Neither the letters nor the brackets or hypens have any special meaning whatsoever.
aaa
aab
aab-[aaa]
aab-[aab]
So if you want to be last in the order you have ...
- Wed Sep 05, 2018 2:10 pm
- Forum: Modding help
- Topic: Order
- Replies: 19
- Views: 6409
Re: Order
The order property is a simple string. When the game compares 2 like prototypes if the order strings aren't equal they're lexicographically compared to determine if a given prototype comes before or after another. Overall, this results in an alphabetical order.
https://wiki.factorio.com/Types ...
https://wiki.factorio.com/Types ...
- Wed Sep 05, 2018 1:30 pm
- Forum: Modding help
- Topic: Order
- Replies: 19
- Views: 6409
Order
I want to display my item-group last but I dont understand how order works. How is it done? Whats the a, b, ... letters?
- Wed Sep 05, 2018 5:02 am
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Re: Dont return inventory contents when destroyed
Yeah darkfrei mentioned itRseding91 wrote:Have you looked at the "infinity-container" entity type? It's a chest that can spawn infinite items and you can set it to not give items back when mined via a setting in the prototype.
- Tue Sep 04, 2018 8:08 pm
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Re: Dont return inventory contents when destroyed
Whooohoo. I had it working fine with lot of events but thats a lot easier thanks.
Can you show some examples?
Code? Or finished chest? For code i just grabbed steel-chest prototype modified picture and added one property to it.
Edit: ohh you meant my old code. I will try to get it back because i ...
Can you show some examples?
Code? Or finished chest? For code i just grabbed steel-chest prototype modified picture and added one property to it.
Edit: ohh you meant my old code. I will try to get it back because i ...
- Tue Sep 04, 2018 3:55 pm
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Re: Dont return inventory contents when destroyed
Thanks, but its strange that buffer does not contain items from inventory
And
https://lua-api.factorio.com/latest/Concepts.html#InfinityFilter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.set_infinity_filter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.infinity ...
And
https://lua-api.factorio.com/latest/Concepts.html#InfinityFilter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.set_infinity_filter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.infinity ...
- Tue Sep 04, 2018 3:39 pm
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Re: Dont return inventory contents when destroyed
Thanks, but its strange that buffer does not contain items from inventory
And
https://lua-api.factorio.com/latest/Concepts.html#InfinityFilter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.set_infinity_filter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.infinity ...
And
https://lua-api.factorio.com/latest/Concepts.html#InfinityFilter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.set_infinity_filter
https://lua-api.factorio.com/latest/LuaEntity.html#LuaEntity.infinity ...
- Tue Sep 04, 2018 1:54 pm
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Re: Dont return inventory contents when destroyed
Thanks, but its strange that buffer does not contain items from inventory
- Tue Sep 04, 2018 1:25 pm
- Forum: Modding help
- Topic: Dont return inventory contents when destroyed
- Replies: 10
- Views: 3866
Dont return inventory contents when destroyed
I am creating infinite chest and I dont want to get items that are in chest when destroyed. I am using defines.events.on_player_mined_entity but that buffer inventory only contains chest itself and I cannot clear items that was in chest.
- Fri Aug 31, 2018 9:41 am
- Forum: Gameplay Help
- Topic: What is small plane?
- Replies: 2
- Views: 2737
Re: What is small plane?
It is an objective in one of tutorial missions. Plane can not be actually used. If I remember right, the mission ends successfully when you get that item but it does not exist in next mission. Recipe is not used in sandbox game.
Ok I never played that tutorial missions. I was thinking plane is ...
Ok I never played that tutorial missions. I was thinking plane is ...
- Fri Aug 31, 2018 8:48 am
- Forum: Gameplay Help
- Topic: What is small plane?
- Replies: 2
- Views: 2737
What is small plane?
I am creating mod similar to helmod but in recipes I found this:

What is small plane? I am missing something?

What is small plane? I am missing something?
- Thu May 10, 2018 11:38 am
- Forum: Modding help
- Topic: Custom recipe category is showing in player inventory
- Replies: 12
- Views: 5086
Re: Custom recipe category is showing in player inventory
although that works, it is incomplete, because it doesn't take into account player entities added by other mods (such as my bobclasses), or the god controller.
instead, you should iterate through all data.raw.player entities, and add your new category.
a function that does what you need that you ...
- Tue May 08, 2018 4:08 pm
- Forum: Modding help
- Topic: Custom recipe category is showing in player inventory
- Replies: 12
- Views: 5086
Re: Custom recipe category is showing in player inventory
Thankseradicator wrote:table.insert(data.raw.player.player.crafting_categories,'your-crafting-category')
- Tue May 08, 2018 1:43 pm
- Forum: Modding help
- Topic: Custom recipe category is showing in player inventory
- Replies: 12
- Views: 5086
Re: Custom recipe category is showing in player inventory
This is normal. you'll probably notice things like oil processing and stuff made in chemical plants also appears on the crafting menu, even though they specifically need to be made in the oil refinery and chemical plant.
You won't be able to hand craft it, but if you point to it, a tooltip should ...
You won't be able to hand craft it, but if you point to it, a tooltip should ...
- Tue May 08, 2018 8:51 am
- Forum: Modding help
- Topic: Custom recipe category is showing in player inventory
- Replies: 12
- Views: 5086
Re: Custom recipe category is showing in player inventory
This is normal. you'll probably notice things like oil processing and stuff made in chemical plants also appears on the crafting menu, even though they specifically need to be made in the oil refinery and chemical plant.
You won't be able to hand craft it, but if you point to it, a tooltip should ...
You won't be able to hand craft it, but if you point to it, a tooltip should ...
- Tue May 08, 2018 8:26 am
- Forum: Modding help
- Topic: Custom recipe category is showing in player inventory
- Replies: 12
- Views: 5086
Custom recipe category is showing in player inventory
I created custom recipe category and then assigned it to my recipes and a custom assembling machine. My custom assembling machine are only showing recipes from this category and normal assembling machine is not showing my recipe category, this it good. But player inventory is showing recipes for my ...
- Fri Feb 16, 2018 4:11 pm
- Forum: General discussion
- Topic: Some better design :D
- Replies: 1
- Views: 1833
Some better design :D
It's poor but working good. 

EDIT: I mean your better design, not this.


EDIT: I mean your better design, not this.