Skip to content

Latest commit

 

History

History

Automate

Automate is a Stardew Valley mod which lets you place a chest next to machines (like a furnace, cheese press, bee house, etc), and the machines will automatically pull raw items from the chest and push processed items into it.

Contents

Install

  1. Install the latest version of SMAPI.
  2. Install this mod from Nexus mods.
  3. Run the game using SMAPI.

Use

Basic automation

Place a chest next to a crafting machine (in any direction including diagonal) to connect it. Machines connected to a chest will push their output into it, and pull ingredients to process out of it.

By default, Automate supports...

Automated machines will give you the same XP, achievements, and items you'd get for using them directly. If multiple chests are part of a group, they'll all be used in the automation. Input will be taken from all the chests, and output will be saved to chests in this order:

  1. chests marked as output chests (see _Configure);
  2. chests which already contain an item of the same type;
  3. any chest.

You can combine any number of chests and machines by placing them adjacent to each other, and you can press U (configurable) to highlight connected machines.

Examples

Here are some example machine group setups. You can increase production by just adding more machines.

  • Automatic crab pots
    A worm bin produces bait, which is fed into the crab pots, which harvest fish and recycle trash. The final products are stored in the chest.

  • Automatic refined quartz factory
    A crystalarium produces quartz, which is smelted into refined quartz, which is stored in the chest.

  • Automatic iridium mead factory
    A bee house produces honey, which is turned into mead, which is aged to iridium quality, which is stored in the chest.

  • Automatic iridium bar factory
    A statue of perfection produces iridium ore, which is smelted into bars, which are stored in the chest.

  • Semi-automatic iridium cheese factory
    Put your milk in the chest and it'll be turned into cheese, then aged to iridium quality, then put back in the chest.

Automation techniques

Fairy dust

You can add fairy dust to the chest to apply it automatically to machines when they're filled. You can choose the minimum processing time for which to apply it; by default it applies to any machine that will take 20 in-game minutes or more.

Adding fairy dust to a chest won't retroactively add it to machines that are already running though.

Connectors

You can optionally configure specific furniture/objects/paths as connectors, which link machines together. For example, here are wooden paths used as connectors:

You can edit the mod settings to add connectors.

Junimo chests

Every machine and chest connected to a Junimo chest is part of a global machine group. This global group behaves just like a regular machine group (including for machine priority), even if it's spread across many locations.

Due to their special behaviour:

  • You can't change input/output options for a Junimo chest. Junimo chests are always automated if at least one is connected to a machine.
  • Machines always take items out of a Junimo chest first, and only push items into one if no other chest is available. Items are still available to all machines in the global group either way.

Machine priority

The default order that machines are processed is unpredictable and subject to change, except that shipping bins are processed last by default.

For example, let's say you have this machine setup and you place two tomatoes in the chest:

┌──────────┐┌──────────┐┌──────────┐┌──────────┐┌──────────┐
│  chest   ││   keg    ││   keg    ││ shipping ││ preserves│
│          ││          ││          ││   bin    ││   jar    │
└──────────┘└──────────┘└──────────┘└──────────┘└──────────┘

By default, all of the tomatoes will go into the kegs or preserves jar (since the shipping bin has a lower priority), but you won't know which ones will get them first. You can change per-machine settings to set the priority for individual machine types and make them predictable.

Note that if all higher-priority machines are busy, any remaining items may go into lower-priority machines.

Machine pipelines

A pipeline pushes an item through a multi-step process. For example, milk in the chest gets processed in the cheese presses, then aged in the casks, then shipped:

 milk         cheese      aged
 ──────────> ──────────> ──────────> shipped
┌──────────┐┌──────────┐┌──────────┐┌──────────┐
│  chest   ││  cheese  ││   cask   ││ shipping │
│          ││  press   ││          ││   bin    │
└──────────┘├──────────┤├──────────┤└──────────┘
            │  cheese  ││   cask   │
            │  press   ││          │
            └──────────┘└──────────┘

There's two caveats though:

  1. The machine positions don't decide which will process an item. Every connected machine has direct access to all of the connected chests, the items don't 'flow' across game tiles.
  2. The shipping bin is lower-priority, but it'll still empty the connected chest if all the other machines are busy.

So there are three common ways to implement a pipeline:

Simple pipeline with machine priorities

If you have enough machines to process every input item, that pipeline will work fine even if there's a shipping bin. The shipping bin will only take items from the chest if every other machine is full. If needed, you can set custom machine priorities to do the same with other machine types.

Simple pipeline with air gap

Another approach is to keep the shipping bin separate from the rest of the machines:

                 back to chest <───┐
                                   │
 milk         cheese      aged     │
 ──────────> ──────────> ──────────┘
┌──────────┐┌──────────┐┌──────────┐            ┌──────────┐
│  chest   ││  cheese  ││   cask   │            │ shipping │
│          ││  press   ││          │            │   bin    │
└──────────┘├──────────┤├──────────┤            └──────────┘
            │  cheese  ││   cask   │
            │  press   ││          │
            └──────────┘└──────────┘

All the processed items will be put back into the chest when they're done. Occasionally you can manually connect the shipping bin (e.g. using a path connector) to empty out all the processed items.

Advanced pipeline with Filtered Chest Hopper

Filtered Chest Hopper is a mod which lets you transfer items from the chest above them to the one below, with optional item filtering rules.

These are ignored by Automate, so you create a chain of machine groups. That lets you support any number of input items without sending unprocessed items to the shipping bin or wrong machine.

The trick is:

  1. Put each machine type is in its own group, not connected to the other machine types.
  2. Give each group an 'input chest' (which receives items to process) and 'output chest' (which receives items processed by the connected machines). Use Chests Anywhere to set the chests' automation options to "never put items in this chest" and "never take items from this chest" respectively.
  3. Add a filtered chest hopper below the 'output chest' of one group, and the 'input chest' of the next.

Here's the same example using filtered chest hoppers:

                    1. milk turned into cheese
                    ────────────────────────────────────────────────────>
                  ┌──────────┐┌──────────┐┌──────────┐┌──────────┐┌──────────┐
                  │  input   ││  cheese  ││  cheese  ││  cheese  ││  output  │  │
                  │  chest   ││  press   ││  press   ││  press   ││  chest   │  │
                  └──────────┘└──────────┘└──────────┘└──────────┘└──────────┘  │
                                                                  ┌──────────┐  │ 2.
                                                                  │ filtered │  │ Filtered Chest Hopper
                                                                  │  hopper  │  │ transfers item
                                                                  └──────────┘  │ to next group
                  ┌──────────┐┌──────────┐┌──────────┐┌──────────┐┌──────────┐  │
                │ │  output  ││   cask   ││   cask   ││   cask   ││  input   │  v
                │ │  chest   ││          ││          ││          ││  chest   │
4.              │ └──────────┘└──────────┘└──────────┘└──────────┘└──────────┘
Filtered Hopper │ ┌──────────┐  <────────────────────────────────────────────
transfers item  │ │ filtered │               3. cheese aged to iridum quality
to next group   │ │  hopper  │
                │ └──────────┘
                │ ┌──────────┐┌──────────┐┌──────────┐┌──────────┐┌──────────┐
                v │  input   ││ mini     ││ mini     ││ mini     ││ mini     │
                  │  chest   ││ ship bin ││ ship bin ││ ship bin ││ ship bin │
                  └──────────┘└──────────┘└──────────┘└──────────┘└──────────┘
                    ────────────────────────────────────────────────────>
                    5. item shipped

Configure

Mod settings

If you install Generic Mod Config Menu, you can click the cog button (⚙) on the title screen or the "mod options" button at the bottom of the in-game menu to configure the mod. Hover the cursor over a field for details.

Per-machine settings

You can also configure individual machine types through Generic Mod Config Menu. This works for all machines, including those added by other mods.

For example, you can uncheck 'Enabled' under Shipping Bin settings if you don't want Automate to move items into shipping bins:

In-game chest settings

Installing Chests Anywhere lets you set per-chest options directly in-game:

This adds two options for Automate:

  • Whether to put items in this chest. Possible values:
    • Put items in this chest (default).
    • Put items in this chest first: Automate will push machine output into this chest first, and only try other chests if it's full.
    • Never put items in this chest.
  • Whether to take items out of this chest. Possible values:
    • Take items from this chest (default).
    • Take items from this chest first: Automate will take machine input from this chest first, and only try other chests if it doesn't have any input for a machine.
    • Never take items from this chest.

(To configure chest automation from another mod, see the technical documentation.)

Compatibility

Automate is compatible with Stardew Valley 1.6+ on Linux/macOS/Windows, both single-player and multiplayer. In multiplayer mode, only the main player can automate machines; other players can keep it installed and use the overlay, their mod just won't automate anything.

Pairs well with...

Troubleshooting

In-game overlay

Press U in-game (configurable) to toggle the automation overlay. This highlights machines, containers, and connectors which are automated (green) or automateable but not currently automated (red):

Console commands

automate summary

Enter automate summary directly in the SMAPI console to view a summary of your machine groups:

automate reset

Enter automate reset directly in the SMAPI console to reset all cached data and rescan the world for machines. Automate normally detects changes automatically, so this isn't usually needed.

FAQs

How many machines can I automate at once?

There's no strict limit, since Automate optimises machine connections internally. I've officially tested with up to 630 machines in one group (which worked fine). The most I've seen is 21,134 automated machines in one save.

Does Automate support custom machines?

Yes! Most custom machines will work out of the box with Automate. For machines added through Producer Framework Mod, install install PFMAutomate.

How do I use path connectors?

Path connectors aren't enabled by default. You can enable them in the settings.

In multiplayer, who gets XP and whose professions apply?

A few machines give XP, update player stats, or check player skills based on the player who uses them. Since there's no player when they're automated, Automate uses the machine owner (i.e. who placed or built the machine) if possible, and defaults to the main player if not.1

More specifically:

machine player effects
bushes The main player's foraging level and botanist profession applies.
crab pots The machine owner's luremaster profession applies, and their caughtFish stat is updated.
fish ponds The machine owner gets XP for collected items.
egg incubators,
slime incubators
The main player's coopmaster profession applies.
shipping bin Prices are set by the online player whose professions would most increase it (see multiplayer on the wiki).
trees The main player's foraging level applies.
custom machines The logic for machines added by other mods is decided by those mods, not Automate.

1 Due to a bug in the game code, the owner is only tracked correctly for crab pots and fish ponds.

Can I prevent a chest from being automated?

Yep; see in-game settings.

Can I disable the shipping bin automation?

Yep, you can disable it using per-machine settings.

Why did my chests/machines disappear?

Some common reasons:

  • NPCs destroy items placed in their path. You can use Non Destructive NPCs to prevent that, or use path connectors to connect machines away from NPC paths.
  • Festivals and the Night Market use temporary maps, so items placed there may disappear when the map is switched back to normal.

Automate doesn't remove placed objects, so it's never at fault for disappearing chests or machines.

What's the order for chest/machine handling?

When storing items, Automate prefers chests which either have the "Put items in this chest first" option (see in-game settings in the README) or already have an item of the same type. The order when taking items is a bit more complicated. For more info, see the technical documentation.

For machines, see machine priority.

Can other mods extend Automate?

Yep. Automate provides APIs that let other mods add custom machines/containers/connectors or make other changes. For more info, see the technical documentation.

See also