Search found 606 matches

by robot256
Sat May 18, 2024 8:06 pm
Forum: Modding help
Topic: steam output power not work
Replies: 11
Views: 420

Re: steam output power not work

There's a bunch of typos "engin" "engines", you're copying the entity twice instead if the item and the entity, the last one "steament" doesn't use the table.copy function at all. and a bunch of parameters that don't apply to the respective item/recipe/entity. Please go...
by robot256
Sat May 18, 2024 7:00 pm
Forum: Modding help
Topic: steam output power not work
Replies: 11
Views: 420

Re: steam output power not work

Yeah, the second one. That should get you close enough to start seeing results in the game!
by robot256
Sat May 18, 2024 5:50 pm
Forum: Modding help
Topic: steam output power not work
Replies: 11
Views: 420

Re: steam output power not work

1. You still need all the code you already had, which was correct. steamrecipe should stay the same, and you add a new section for e.g. steamentity 2. What I wrote was correct. Items are stored in data.raw.item, but entities are stored in many different categories, like data.raw.armor and data.raw[&...
by robot256
Sat May 18, 2024 4:27 pm
Forum: Modding help
Topic: steam output power not work
Replies: 11
Views: 420

Re: steam output power not work

The entity for the steam engine is stored in `data.raw.generator["steam-engine"]` and the prototype parameters for the generator entity can be found in the documentation at https://lua-api.factorio.com/latest/prototypes/GeneratorPrototype.html Do another copy.deepcopy of the entity entry, ...
by robot256
Fri May 17, 2024 2:02 am
Forum: Logistic Train Network
Topic: Attempting to Implement Round Robin Schuelder Via LTN
Replies: 5
Views: 268

Re: Attempting to Implement Round Robin Schuelder Via LTN

Then I guess what's the actual problem? If the built-in timer priority (Fifo) isn't good enough, use the circuit priority to override it however you like. As long as you arrange it so trains empty completely at each requester, you don't need a separate network for each resource.
by robot256
Thu May 16, 2024 10:21 pm
Forum: Logistic Train Network
Topic: Attempting to Implement Round Robin Schuelder Via LTN
Replies: 5
Views: 268

Re: Attempting to Implement Round Robin Schuelder Via LTN

"Always have enough" isn't the only answer. You can also let the belts back up until materials reach everywhere and the output runs again. But that can take a while and result in cyclic operation. How about making the LTN station priority dynamically controlled by a timer, so that stations...
by robot256
Thu May 16, 2024 9:48 pm
Forum: Modding help
Topic: steam output power not work
Replies: 11
Views: 420

Re: steam output power not work

Items are only the things held in inventory. Right now your new item places the same old engine entity. You need to make a new Entity and change the placement links for it to be different when you place it.
by robot256
Thu May 16, 2024 6:28 pm
Forum: Logistic Train Network
Topic: Attempting to Implement Round Robin Schuelder Via LTN
Replies: 5
Views: 268

Re: Attempting to Implement Round Robin Schuelder Via LTN

To clarify, are you trying to solve a particular factory production problem, or are you trying to specifically make trains drive in a specific way? LTN is supposed to operate so that consumers only initiate a request when they have space to completely unload the train before it returns to the depot....
by robot256
Sun May 05, 2024 2:05 am
Forum: Modding help
Topic: Vetoing the pipette tool
Replies: 5
Views: 313

Re: Vetoing the pipette tool

There are a bunch of ways to preempt or diasble pipetting, both via prototype flags and via scripts. Look at some of my mods for ways to do it! They also handle blueprintable/not blueprintable items. https://mods.factorio.com/mod/MultipleUnitTrainControl (change MU setting to "Basic", put ...
by robot256
Tue Apr 30, 2024 5:28 am
Forum: Modding help
Topic: Dropdown for int-setting with text description?
Replies: 2
Views: 156

Re: Dropdown for int-setting with text description?

Make a table with strings as keys and numbers as values, then index it with the string value of the setting to get the corresponding number.

Mapping = {one=1,["number two"]=2}

Mapping["one"] == 1
by robot256
Tue Apr 02, 2024 3:43 pm
Forum: Technical Help
Topic: New Gamer PC, poor factorio performance
Replies: 10
Views: 1031

Re: New Gamer PC, poor factorio performance

Note that some benchmarkers have found the Vcache on the X3D chips doesn't help Factorio performance much if the map is too big for the important bits to fit in the cache. At that point the bottleneck is raw latency to the DDR memory same as a normal processor.
by robot256
Sat Mar 30, 2024 7:48 pm
Forum: Modding help
Topic: What am I missing? Lua API
Replies: 4
Views: 327

Re: What am I missing? Lua API

It doesn't match the error given, but the code you ran won't work anyways. On_load is only allowed to read variables, not alter the game state by creating entities. On_load runs when you load a savegame, and the simulation is supposed to be unaware of whether it has been saved and loaded or just kep...
by robot256
Sun Mar 24, 2024 2:54 pm
Forum: This Forum
Topic: Please make the forum search support underscored words
Replies: 4
Views: 1400

Re: Please make the forum search support underscored words

Wow, even putting it in quotes doesn't help. +1
by robot256
Fri Mar 22, 2024 7:15 pm
Forum: Ideas and Suggestions
Topic: Skip mod loading
Replies: 5
Views: 452

Re: Skip mod loading

In FFF 391 they at least show 2.0 will add access to the mod manager if there is a mod loading error. It would be great if there were a shortcut to invoke this before loading at all. https://www.factorio.com/blog/post/fff-391
by robot256
Fri Mar 22, 2024 5:03 pm
Forum: News
Topic: Friday Facts #403 - Train stops 2.0
Replies: 130
Views: 18983

Re: Friday Facts #403 - Train stops 2.0

About the problem on how to refuel a stuck train on a water-bridge... Why not just giving bridges emergency-solar-panels which allow them to power trains so they can drive at 5 km/h maximum speed while on the bridge until they are on solid ground again? Almost nobody talks about the ability to coup...
by robot256
Fri Mar 15, 2024 5:02 pm
Forum: News
Topic: Friday Facts #402 - Lightspeed circuits
Replies: 169
Views: 25175

Re: Friday Facts #402 - Lightspeed circuits

[ I'm also quite curious how the "light speed crafting" was implemented. As I've thought about the issue of crafting more than one item per tick before. And my thoughts were to just use 2 fixed point integers. One for the crafting progress per tick, and the other being the current progres...
by robot256
Thu Mar 14, 2024 12:04 am
Forum: Modding discussion
Topic: Extract Industrial IoT data to learn
Replies: 4
Views: 512

Re: Extract Industrial IoT data to learn

It may even be possible to use a Lua combinator mod like https://mods.factorio.com/mod/Moon_Logic to call https://lua-api.factorio.com/latest/classes/LuaGameScript.html#write_file to log circuit values, at least as a prototype. Qon's idea 9f having tagged value logger combinators so everything ends ...
by robot256
Wed Mar 13, 2024 5:28 pm
Forum: Ideas and Suggestions
Topic: Demand Statistics
Replies: 7
Views: 657

Re: Demand Statistics

I am currently running a rather large space exploration world so it has become almost impossible to manage supply and demand of all my intermediate products. Trying to use the production/consumption statistics isn't that useful as consumption will almost always match production when in steady state...
by robot256
Tue Mar 12, 2024 3:27 pm
Forum: Modding discussion
Topic: Extract Industrial IoT data to learn
Replies: 4
Views: 512

Re: Extract Industrial IoT data to learn

This is an interesting topic. I'm not totally clear what all the data you are looking for is. Are you trying to log data over time while running a map in the game, so you can plot it afterwards? Can you list what exactly you are trying to log, so we can identify sources for each piece? Some of the d...
by robot256
Thu Mar 07, 2024 7:06 pm
Forum: Technical Help
Topic: [1.1.104] - Space Exploration [0.6.125], AAI industry [0.5.22], Space Exploration Postprocess [0.6.28] don't load
Replies: 1
Views: 376

Re: [1.1.104] - Space Exploration [0.6.125], AAI industry [0.5.22], Space Exploration Postprocess [0.6.28] don't load

This was posted on the SE discord: https://discord.com/channels/419526714721566720/1213471586913493012 In that case it was caused by Bob's Character Classes. The solution was to either uninstall that mod, or change the contents: > Open bobs classes mod, open `/bobclasses/prototypes/character.lua#L6`...

Go to advanced search