#ship scheduling
1 messages · Page 1 of 1 (latest)
well, the thing is, i tried to set a request satisfied and timer at the end of the schedule to separate it. but the timer sends the ship reguardless if any of the requests are full
Show me how you set it up
i can show you what i attempted to set
What you described should happen only if you did (requests fulfilled OR timer)
\
Ah yeah, OR takes precedence
the OR condition needs to be lower and not higher than everything else
and i dont believe there is any way to fix this without using curcuit conditions
There is but it's a bit annoying
Basically you have a set of conditions A that need to be true, and (carbon fiber or timer)
In factorio's scheduled conditions, you need to present it as
(A and carbon fiber) OR (A and timer)
Where A is the set of all the other conditions you want to be true. So they need to be repeated between the two OR'd clauses
how about something like this?
Works but in the second case your ship could leave withOUT Science, ammo or fuel
(just carbon fibre)
yea i dont want that
You need to add ammo and fuel into the bottom clause too
And Science, but you can remove the timer from the bottom
Basically the top and bottom clauses should only have 1 difference: one wants carbon, the other has a timer
So: (fuel, ammo, science, carbon) OR (fuel, ammo, science, timer)
Take away the timer from the top clause. Put it in the bottom
Carbon fiber and timer shouldn't be ANDed together
Oh wait
Where's your carbon fibre?
Aaaah, all requests satisfied
if i did all requests, it would count science and carbon fiber