Valheim
0 of 0

File information

Last updated

Original upload

Created by

ASharpPen

Uploaded by

ASharpPen123

Virus scan

Safe to use

Tags for this mod

About this mod

Tool for configuring loot tables. Allows for configuring, removing or adding to the drops of any mob, as well as most entities such as trees, chests, etc.

Requirements
Permissions and credits
Mirrors
Changelogs
Donations
Drop That!

Drop That! is a mod that enables changing existing loot tables through configuration files. It can either add or replace existing drops.

See the Jötunn item data to get a list of item names which can be used.

A full list of prefabs can also be found at Jötunn prefab data.

Documentation

Documentation can be found on the Drop That! wiki.

Features
  • Override any existing potential drop of a mob, by specifying the index of the item you want changed.
  • Add as many additional drops with their own drop chance or drop range as you want
  • Discard all existing drop tables
  • Discard all existing drop tables for entities modified.
  • Configuration templates, for easy extension.
  • Add a variety of conditions for when an item should be dropped
  • Server-side configs
  • Adds mod specific conditions for: 
  - Creature Level and Loot Control
  - Epic Loot 
  • Performance improvements
    - Drop stacks instead of individual items. Want to have a stack of coins, that isn't a massive lag tower of individual coins?    - Limit max amount to avoid those pesky world-crashing level 10 trolls.


Manual Installation:
  • Install the BepInEx Valheim
  • Download the latest zip
  • Extract it in the \<GameDirectory\>\Bepinex\plugins\ folder.
  • Launching the game and joining a world will generate a config file in the "<GameLocation>/BepInEx/config" folder.

Client / Server

Drop That needs to be installed on all clients and on server to work.

From v1.4.0 clients will request the configurations currently loaded by the server, and use those without affecting the clients config files.
This means you should be able to have server-specific configurations, and the client can have its own setup for singleplayer.

Example configuration:
[Draugr.0]
PrefabName= Entrails
SetAmountMin = 1
SetAmountMax= 1
SetChanceToDrop = 100
SetScaleByLevel = true
EnableConfig = true

[Draugr.1]
PrefabName= IronScrap
SetAmountMin = 1
SetAmountMax = 1
SetChanceToDrop = 100
SetScaleByLevel = true
EnableConfig = true

[Deer.5]
PrefabName= Coins
SetAmountMin = 1
SetAmountMax = 100
SetChanceToDrop = 50
SetScaleByLevel = false
EnableConfig = true
ConditionMinLevel=1
ConditionMaxLevel=2
ConditionNotDay=false
ConditionNotNight=false
ConditionNotAfternoon=false
ConditionEnvironments=Misty
ConditionGlobalKeys=defeated_bonemass
ConditionBiomes=Blackforest,Meadows


v2.0.0 Details

New loot tables supported:

Valheim uses multiple types of loot tables, which each works very differently. Until now, Drop That has only supported the most used type for creatures, CharacterDrop.
With v2.0.0, there will now be support for the much more complicated and generally used loot system DropTable.

This table is used for a variety of scenarios. Amongst them are:
- Seagals
- Treasure chest loot
- Drops on destroyed objects
- Tree logs
- Rocks
- Beehives

All default loot tables supported can be printed as usual, so that all the defaults can be explored, copy-pasted and modified.

So whats not supported yet?
- A lot of objects and creatures are customly configured to drop items on death/destruction, these are not covered by any of the loot table systems.
- Pickable objects, like mushrooms

Drop Lists:
A feature that has been requested often, is the ability to make a list of drops and then re-use that list multiple times, without having to copy-paste everything.

With v2.0.0, a new format and setting have been added for making named lists, that can be referenced by each entity (both mobs and objects) to work as a default.

Breaking changes:

The new support for additional drop tables resulted in some issues with regards to naming. The newly supported tables have a completely different structure and way of behaving. Due to this, Drop That need to use different config formats for each type of drop table. Therefore, while it may be somewhat confusing to the user, configs will now be named according to the internal type they provide configuration options for.

File name and pattern changes:
`drop_that.tables.cfg` => `drop_that.character_drop.cfg`
`drop_that.supplemental.*` => `drop_that.character_drop.*.cfg`

From the beginning, Drop That had a bit of a confusing naming schemes for its settings. Some of the names were simply the original setting names, while in other cases a more clear or standardized name was assigned.

This will be the first time existing settings changes name, and hopefully it can be avoided again in the future. In general, Drop That will (or at least, should) continue only changing existing setting names for major patches like this.

Setting changes in `drop_that.character_drop.cfg`:
`ItemName` => `PrefabName`
`Enabled` => `EnableConfig`
`AmountMin` => `SetAmountMin`
`AmountMax` => `SetAmountMax`
`Chance` => `SetChanceToDrop`
`OnePerPlayer` => `SetDropOnePerPlayer`
`LevelMultiplier` => `SetScaleByLevel`
- Rescaled `Chance` / `SetChanceToDrop` to be in range 0 to 100 instead of 0 to 1. 1 is now 1% chance.

Setting changes in `drop_that.cg`:
- Moved old settings from `[DropTables]` To `[CharacterDrop]`. [DropTables] will now contain the settings for, well... DropTable configurations.
`[General] EnableDebug` moved to `[Debug] EnableDebugLogging`
`WriteDefaultDropTableToFile` => `WriteCharacterDropsToFile`
- Removed `ApplyConditionsOnDeath`. Conditions are being applied when it makes the most sense, instead of arbitrarily picking which one behaves according to this setting and which doesn't.