Search found 38 matches

by MineGame159
Tue Jun 11, 2019 2:46 pm
Forum: Ideas and Suggestions
Topic: Add option to search through installed mods
Replies: 0
Views: 553

Add option to search through installed mods

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 must gr...
by MineGame159
Thu Sep 06, 2018 11:30 am
Forum: Modding help
Topic: Order
Replies: 19
Views: 5041

Re: Order

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.
Much better now.
by MineGame159
Wed Sep 05, 2018 7:58 pm
Forum: Modding help
Topic: Order
Replies: 19
Views: 5041

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 said "...
by MineGame159
Wed Sep 05, 2018 4:46 pm
Forum: Modding help
Topic: Order
Replies: 19
Views: 5041

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 ...
by MineGame159
Wed Sep 05, 2018 2:10 pm
Forum: Modding help
Topic: Order
Replies: 19
Views: 5041

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/Order...
by MineGame159
Wed Sep 05, 2018 1:30 pm
Forum: Modding help
Topic: Order
Replies: 19
Views: 5041

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?
by MineGame159
Wed Sep 05, 2018 5:02 am
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

Re: Dont return inventory contents when destroyed

Rseding91 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.
Yeah darkfrei mentioned it
by MineGame159
Tue Sep 04, 2018 8:08 pm
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

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 de...
by MineGame159
Tue Sep 04, 2018 3:55 pm
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

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_filte...
by MineGame159
Tue Sep 04, 2018 3:39 pm
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

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_filte...
by MineGame159
Tue Sep 04, 2018 1:54 pm
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

Re: Dont return inventory contents when destroyed

Thanks, but its strange that buffer does not contain items from inventory
by MineGame159
Tue Sep 04, 2018 1:25 pm
Forum: Modding help
Topic: Dont return inventory contents when destroyed
Replies: 10
Views: 3144

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.
by MineGame159
Fri Aug 31, 2018 9:41 am
Forum: Gameplay Help
Topic: What is small plane?
Replies: 2
Views: 2415

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 goin...
by MineGame159
Fri Aug 31, 2018 8:48 am
Forum: Gameplay Help
Topic: What is small plane?
Replies: 2
Views: 2415

What is small plane?

I am creating mod similar to helmod but in recipes I found this:
Image
What is small plane? I am missing something?
by MineGame159
Thu May 10, 2018 11:38 am
Forum: Modding help
Topic: Custom recipe category is showing in player inventory
Replies: 12
Views: 4236

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 ca...
by MineGame159
Tue May 08, 2018 4:08 pm
Forum: Modding help
Topic: Custom recipe category is showing in player inventory
Replies: 12
Views: 4236

Re: Custom recipe category is showing in player inventory

eradicator wrote:table.insert(data.raw.player.player.crafting_categories,'your-crafting-category')
Thanks
by MineGame159
Tue May 08, 2018 1:43 pm
Forum: Modding help
Topic: Custom recipe category is showing in player inventory
Replies: 12
Views: 4236

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 p...
by MineGame159
Tue May 08, 2018 8:51 am
Forum: Modding help
Topic: Custom recipe category is showing in player inventory
Replies: 12
Views: 4236

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 p...
by MineGame159
Tue May 08, 2018 8:26 am
Forum: Modding help
Topic: Custom recipe category is showing in player inventory
Replies: 12
Views: 4236

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 ...
by MineGame159
Fri Feb 16, 2018 4:11 pm
Forum: General discussion
Topic: Some better design :D
Replies: 1
Views: 1595

Some better design :D

It's poor but working good. :)
Image
EDIT: I mean your better design, not this.

Go to advanced search