Bad Neighbors Mods

Legacy Backpack Crafting Fix: Backpack Crafting That Keeps Ticking

Legacy Backpack Crafting Fix restores old-style backpack crafting and scrapping timers so they keep updating after the backpack or crafting window is closed.

What It Fixes

Legacy Backpack Crafting Fix restores old-style backpack crafting and scrapping behavior in 7 Days to Die V3. It keeps backpack crafting and scrapping timers updating even after the backpack or crafting window is closed.

  • Keeps backpack crafting queue timers advancing in the background.
  • Keeps scrapping progress from pausing when the crafting UI is closed.
  • Uses XML-only XUi patches with no DLL, Harmony patch, or custom compiled code.

What Changed In The Game

In newer versions of 7 Days to Die, backpack crafting and scrapping became tied more tightly to the XUi crafting window update cycle. When the backpack or crafting UI closes, the related XUi controllers can stop updating. Since the visible crafting queue and recipe stack timers are driven through that UI controller tree, closing the backpack can cause crafting or scrapping progress to pause instead of continuing in the background.

Older versions let those timers keep advancing after the backpack was closed. This mod restores that legacy feel.

How The Fix Works

The mod sets always_update="true" on the relevant crafting XUi pieces so the client keeps those controllers alive even when the backpack/crafting window is not currently open.

  • the crafting window group
  • the windowCraftingQueue window
  • the CraftingQueue controller
  • the crafting queue grid
  • the RecipeStack template/controller

Because this behavior lives in the client-side UI update path, the mod has to run on the client. A server-only install is not enough, because the server does not run each player’s local XUi window tree.

Why It Works

Backpack crafting and scrapping already know how to continue. The issue is that the XUi update path they depend on can stop when the window closes. This fix does not rebuild crafting logic. It simply keeps the existing crafting queue UI controllers alive and ticking in the background, which lets the game continue using its normal crafting and scrapping behavior.

Backpack closed
-> crafting XUi would normally stop updating
-> queue timers pause

With this mod:
Backpack closed
-> crafting XUi keeps updating
-> queue timers continue

Client Mod Notice

This is a client-side modlet. Each player who wants the legacy behavior needs the mod installed locally. Installing it only on the dedicated server will not fix the client-side XUi update behavior.

Included Files

zzz_LegacyBackpackCraftingFix/
  ModInfo.xml
  README.md
  Config/
    XUi_InGame/
      xui.xml
      windows.xml
      templates.xml

Install

Place the entire folder here:

7 Days To Die/Mods/zzz_LegacyBackpackCraftingFix

Keep the zzz_ prefix. This helps the patch load after other XUi, backpack, crafting UI, or HUD mods that may replace the same windows.

https://www.nexusmods.com/7daystodie/mods/11526

Compatibility

This mod is XML-only and does not modify game assemblies. It may conflict with other mods that fully replace the crafting queue window, crafting window group, or recipe stack template. The zzz_ prefix helps reduce that risk by loading this patch late.

Like the rest of the Bad Neighbors original work, this fix comes from pushing for a specific gameplay outcome and then grinding through the details until the game behaves the way it should. Credit as always to the 7 Days to Die modding community that keeps finding, testing, and sharing the little fixes that make servers better to play.

Scroll to Top