ArgusMagnus-ServersideQoL_PrefabConfigurator icon

ServersideQoL PrefabConfigurator

Configure prefabs to your hearts content. Increase the range of workstations. Make fireplaces/light sources toggleable or have infinite fuel. Change plant grow time or required space. Etc. etc. etc.

Last updated 8 hours ago
Total downloads 404
Total rating 0 
Categories Server-side
Dependency string ArgusMagnus-ServersideQoL_PrefabConfigurator-2.0.4
Dependants 0 other packages depend on this package

This mod requires the following mods to function

ArgusMagnus-ServersideQoL-2.0.4 icon
ArgusMagnus-ServersideQoL

Serverside-only QoL mod, compatible with vanilla/console (e.g. XBox, PS, Switch) clients. Stack player inventories into chests, generated portal hub, auto-sort chests, refuel smelters from containers, infinite building/farming stamina and much more

Preferred version: 2.0.4

README

Serverside QoL

This mod adds some QoL features as a serverside-only mod.

It's designed and tested for dedicated servers with vanilla/console clients (e.g. XBox/PS/Switch users).

If you'd like to support me, subscribe as a test user. You can help by testing the beta versions on hexium.

Features

Configure every vanilla compatible field in the game.

On startup, a template configuration file with all the available component-prefab combinations and their fields with default values will be generated.

Examples:

Omitting PrefabNames will apply the configuration to all prefabs of the specified component.

$(ValheimInstallDir)/BepInEx/config/ArgusMagnus.ServersideQoL.PrefabConfigurator/Prefabs.yml:

Entries:
# Increase range of stone cutter/black forge
- Component: CraftingStation
  PrefabNames:
  - piece_stonecutter
  - blackforge
  Fields:
    m_rangeBuild: 40
  
# Allow crafting station upgrades to connect to their crafting station from farther away
- Component: StationExtension
  Fields:
    m_maxStationDistance: 64
    
# Halve fermentation duration for all fermenters
- Component: Fermenter
  Fields:
    m_fermentationDuration: /2

# Give all fireplaces infinite fuel
- Component: Fireplace
  Fields:
    # m_infiniteFuel: true disables toggling, this way toggling still works
    m_secPerFuel: 0
    m_canRefill: false
    # m_canTurnOff: true # Make all toggleable
    
# Disable space requirements and halve grow time for all plants
- Component: Plant
  Fields:
    m_growRadius: 0
    m_destroyIfCantGrow: false
    m_growTime: /2
    m_growTimeMax: /2

# Allow all ships/carts to be deconstructed with the build hammer
- Component: Piece
  PrefabNames:
  - Raft
  - Karve
  - VikingShip
  - VikingShip_Ashlands
  - Cart
  - BatteringRam
  - Catapult
  Fields:
    m_canBeRemoved: true

# Ignore wind intensity for windmills (run full power even if there is no wind)
- Component: Windmill
  Fields:
    m_minWindSpeed: -3.4028235E+38 # float.MinValue
    
# Ignore item weight in carts
- Component: Vagon
  Fields:
    m_itemWeightMassFactor: 0

# Disable unsummoning of skeletts
- Component: Tameable
  Fields:
    m_unsummonDistance: 0 # Disable distance-based unsummoning of summoned skeletts
    m_unsummonOnOwnerLogoutSeconds: 0 # Disable logout time-based unsummoning of summoned skeletts

This mod is intentionally kept simple. If you want powerful scripting support, use Expand World Prefabs.

Other ServersideQoL mods

Feature Requests

If you have an idea you think might fit this mod, you can create a feature request issue in the github project or the hexium mod page.

Known Issues

Known issues are listed in the github project. If you experience an issue, please file a report there or on the hexium mod page.

Configuration

The configuration is loaded from $(ValheimInstallDir)/BepInEx/config/ArgusMagnus.ServersideQoL.PrefabConfigurator.cfg. Start the server once to generate the file if it does not exist.