Super Factory Manager ( SFM )

Super Factory Manager ( SFM )

16M Downloads

Question/request: can i specify an amount of fluid

acidjazz opened this issue ยท 3 comments

commented
every 20 ticks do
  input 250mb * from a BOTTOM SIDE
  output fluid:*:* to b TOP SIDE
end

or maybe

every 20 ticks do
  input 0.25 * from a BOTTOM SIDE
  output fluid:*:* to b TOP SIDE
end
commented
every 20 ticks do
  input 250 fluid:: from a BOTTOM SIDE
  output 250 fluid:: to b TOP SIDE -- you could omit the number for this one if you wanted
end

units are in millibuckets

can do fluid:minecraft:lava or fluid:minecraft:* or fluid::*molten*, etc

commented

amazing, thank you, trying to get fluid from a mekanism tank into a IF dissolution chamber, the items work fine in this:

name "chamber"

every 20 ticks do
  if (chamber has eq 0 *) and
     (a has > 0 *pity*) and 
     (a has > 1 *plastic*) and
     (a has > 1 *nether*) and 
     (a has > 1 iron_ingot) and 
     (a has > 0 *gear*) then
    input 1 *pity* from a
    input 2 *plastic* from a
    input 2 *nether* from a
    input 2 iron_ingot from a
    input 1 *gear* from a
    output to chamber BOTTOM SIDE
    forget
    input 250 fluid:: from latex
    output fluid:: to chamber BOTTOM SIDE
  end
end

wonder what i'm doing wrong here

commented

perhaps add a direction from latex north side since some inventories don't like it when you use the null direction

also make sure you've pushed your latest labels