#ship scheduling

1 messages · Page 1 of 1 (latest)

naive gate
#

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

hexed torrent
#

Show me how you set it up

naive gate
#

i can show you what i attempted to set

hexed torrent
#

What you described should happen only if you did (requests fulfilled OR timer)

naive gate
hexed torrent
#

Ah yeah, OR takes precedence

naive gate
#

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

hexed torrent
#

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

naive gate
#

how about something like this?

hexed torrent
#

Works but in the second case your ship could leave withOUT Science, ammo or fuel

#

(just carbon fibre)

naive gate
#

yea i dont want that

hexed torrent
#

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)

naive gate
#

one moment

#

something like this?

hexed torrent
#

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

naive gate
#

if i did all requests, it would count science and carbon fiber

hexed torrent
#

Gotcha

#

Yeah nvm that works!

#

Misread it initially, it's good n