Since players often complain about the "chore simulator" aspect of manual stocking, a high-impact feature would be a . This feature would automatically pull items from nearby chests into the tavern’s service taps and food slots when they run low. 2. Technical Implementation (C# / BepInEx)
To turn your ideas into a working .dll (which would be packed into your travellers_rest.rar ), follow these steps:
: Use a TransferItem method to move the matching item ID from the chest to the service slot. travellers_rest.rar
If you prefer building something the community is actively asking for, consider these:
To build this, you need to hook into the game's TavernManager or Inventory classes. Since players often complain about the "chore simulator"
: Create a routine that checks the CurrentAmount of items in the Food/Drink slots .
: If an amount is below a threshold (e.g., 5 units), scan all Chest objects within a specific ZoneID . Technical Implementation (C# / BepInEx) To turn your
: Display a small notification in the corner (e.g., "Auto-Stocker: Added 20x Lager" ). 3. Development Setup