Incorrect. What happens if the item signal suddenly and massively changes? For example, if we've got a Request Threshold of 1000 and the item signal at the lamp goes from 2000 to -48000? Does it ship just 1k? Or does it ship 48k?
Consider the behavior you see when you first set up a requester station. Does it ship many trains each carrying just the threshold amount? Why or why not? How can we exploit this behavior?
1. Incorrect. You will not get trains, since the station is not requesting anything while item signals are positive. Read the question before answering next time.redis wrote: ↑Sun Oct 04, 2020 7:02 pm Results of this:
1. if you have threshold 0 it means it will immediately issue request if it drops to <0 with train(s) arriving with couple of stacks only and keep doing so every damn few seconds. You will get near empty trains with 0 threshold!
2. Opposite if you have large threshold of 50000. It means small items signal need to wait to drop to -50000 too to get order issued. You may not want to stack up on that many and if you use small trains for small items it will send 5 trains right away to fullfil such large order.
2. You're so far off base I can't even call this an answer. The threshold is 0, why are you talking about large thresholds? Read the question before answering next time.
I'm not asking these questions as part of an argument, I'm asking these questions as a teaching method. If you're not answering them, you're not progressing towards an understanding of the solution. And frankly, I have a working solution, you don't, and I don't care if you get the solution to your problem or not. If you don't want this working solution, I'm not going to keep trying to force you to learn and this will be my last post in the thread.
Good news then, it's in my first post in the thread!redis wrote: ↑Sun Oct 04, 2020 7:02 pm Sending Full trains actually would allow to set the small threshold (aka 0) and the train would not arrive with only a couple of stacks, but FULL and the next order would be issued after all the items are used up. If you can show circuitry which works with 0 threshold as is and sends full trains you are welcome rock star.