Page 103 of 103

Re: Simple Questions and Short Answers

Posted: Wed Nov 26, 2025 4:48 pm
by Loewchen
ssmikis wrote: Wed Nov 26, 2025 4:08 pm I have watched bunch of videos and read factorio wiki about rs latching. I think that my contraption dont reset or set. Can someone give it a glance?fact.jpg
You set it to start inserting when there are 300 coal in the chest and stop when there are 101 coal. Flip the values of the two conditions or rearrange them so it starts at 101 and stops at 300.

Re: Simple Questions and Short Answers

Posted: Wed Nov 26, 2025 10:56 pm
by ssmikis
Loewchen wrote: Wed Nov 26, 2025 4:48 pm You set it to start inserting when there are 300 coal in the chest and stop when there are 101 coal. Flip the values of the two conditions or rearrange them so it starts at 101 and stops at 300.
Thank you

Re: Simple Questions and Short Answers

Posted: Thu Nov 27, 2025 10:21 am
by ssmikis
Loewchen wrote: Wed Nov 26, 2025 4:48 pm
You set it to start inserting when there are 300 coal in the chest and stop when there are 101 coal. Flip the values of the two conditions or rearrange them so it starts at 101 and stops at 300.
It starts at 100 and stops at 102. Memory doesn't hold.
fact2.jpg
fact2.jpg (252.69 KiB) Viewed 43 times
It seams that putting signal in the middle helped. Its soo finicky
fact3.jpg
fact3.jpg (171.33 KiB) Viewed 33 times

Re: Simple Questions and Short Answers

Posted: Thu Nov 27, 2025 10:55 am
by Nidan
ssmikis wrote: Thu Nov 27, 2025 10:21 am
Loewchen wrote: Wed Nov 26, 2025 4:48 pm
You set it to start inserting when there are 300 coal in the chest and stop when there are 101 coal. Flip the values of the two conditions or rearrange them so it starts at 101 and stops at 300.
It starts at 100 and stops at 102. Memory doesn't hold. fact2.jpg
If you want to start it below 101 coal and stop above 300 coal, you forgot to flip the comparison on the second condition; it needs to be < or <=.

The first condition says when it should start. The second condition says whether it should keep going (not when it should stop).

Re: Simple Questions and Short Answers

Posted: Thu Nov 27, 2025 11:11 am
by ssmikis
Nidan wrote: Thu Nov 27, 2025 10:55 am
If you want to start it below 101 coal and stop above 300 coal, you forgot to flip the comparison on the second condition; it needs to be < or <=.

The first condition says when it should start. The second condition says whether it should keep going (not when it should stop).
Thank you for your input

I tried both conditions <, < or =, >, > or =, mixed conditions with < ,>. but always keep the same order of conditions ( like in videos i saw) what did the trick ( it seams) changing order of [AND] condition ....I am lower than beginner at this point.