You are viewing a potentially older version of this package. View all versions.
Azumatt-WorldItemDropDisplay-1.1.0 icon

WorldItemDropDisplay

A client-side Valheim mod that shows floating UI markers above dropped items in the world, giving you at-a-glance info of items in range.

Date uploaded 3 weeks ago
Version 1.1.0
Download link Azumatt-WorldItemDropDisplay-1.1.0.zip
Downloads 464
Dependency string Azumatt-WorldItemDropDisplay-1.1.0

This mod requires the following mods to function

denikson-BepInExPack_Valheim-5.4.2202 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.

Preferred version: 5.4.2202

README

WorldItemDropDisplay

https://github.com/AzumattDev/WorldItemDropDisplay/blob/master/Thunderstore/icon.png?raw=true

A client-side Valheim mod that shows floating UI markers above dropped items in the world, giving you at-a-glance info (for items in range) on:

  • Stack size
  • Quality level
  • Durability (with a bar)
  • Teleport-lock icon
  • Food effect color coding
  • Name of the item

Client only mod, not needed on server.

This mod uses a file watcher. If the configuration file is not changed with BepInEx Configuration manager, but changed in the file directly, upon file save, it will live update the changes.

Configuration

All settings live in BepInEx/config/Azumatt.WorldItemDropDisplay.cfg (or use BepInEx’s in-game Config Manager). Edit by hand or via UI, either way, changes reload on the fly.

Setting Description Default
Position Interval How often (seconds) to refresh UI positions 0.01
Max Display Distance Maximum distance (meters) at which markers appear 10.0
World Item Offset Offset (X, Y, Z) relative to each item (0, 0.5, 0)
Show Background Show the background behind the item, in the item drop display Off
Show Amount Show the stack-count text for stackable items, in the item drop display Off
Show Quality Show the quality number, in the item drop display Off
Show Durability Show the durability bar when applicable, in the item drop display Off
Show No Teleport Icon Show icon when item cannot be teleported, in the item drop display Off
Show Food Icon Show the food icon for consumables (eitr, health, stamina forks), in the item drop display Off
Show Name Show the item’s localized name Off
Toggle ItemDrop Display Toggle the item drop display on and off. The display will still turn off when other UI elements are open ignoring this. LeftAlt + F

Features

  • Real-time data: Stack, quality, durability, teleport status, food effect, and equip status update automatically.
  • Low GC & smooth: Uses object pooling, caching, and early-exit checks to minimize garbage collection and per-frame work.
  • Live config reload: Change your .cfg by hand and see it apply immediately—no restart required.

Installation Instructions

You must have BepInEx installed correctly! I can not stress this enough.

Manual Installation

Note: (Manual installation is likely how you have to do this on a server, make sure BepInEx is installed on the server correctly)

  1. Download the latest release of BepInEx.
  2. Extract the contents of the zip file to your game's root folder.
  3. Download the latest release of WorldItemDisplay from Thunderstore.io.
  4. Extract the contents of the zip file to the BepInEx/plugins folder.
  5. Launch the game.

Installation through r2modman or Thunderstore Mod Manager

  1. Install r2modman or Thunderstore Mod Manager.

    For r2modman, you can also install it through the Thunderstore site.

    For Thunderstore Mod Manager, you can also install it through the Overwolf app store

  2. Open the Mod Manager and search for "WorldItemDisplay" under the Online tab. Note: You can also search for "Azumatt" to find all my mods.

    The image below shows VikingShip as an example, but it was easier to reuse the image.

  3. Click the Download button to install the mod.

  4. Launch the game.



Feel free to reach out to me on discord if you need manual download assistance.

Author Information

Azumatt

DISCORD: Azumatt#2625

STEAM: https://steamcommunity.com/id/azumatt/

For Questions or Comments, find me in the Odin Plus Team Discord or in mine:

https://i.imgur.com/XXP6HCU.png

CHANGELOG

Version Update Notes
1.1.0 - Remove Subtract Camera Offset and Data Interval configuration options. You will need to delete your config file and let it regenerate on next game boot!
- Re-code the data interval to be more event based, increasing performance when there are a lot of item drops on the ground and eliminating the need for the configuration option.
- Add a configuration option to show the localized name of the item drop above the icon (Default Off).
- Default all toggle options to off for a cleaner UI to start. Toggle back on to add the information you wish to see.
- Max Display Distance is now default to 10 (doubled)
- World Item Offset is now 0, 0.5, 0 and not 0, 1.2, 0 to be a little closer to the item for accuracy reasons.
- Fish outside of water are ignored if they are jumping, and only when not jumping from land. Fish in water are still ignored.
- Add a hotkey to be able to toggle off the world item drop display (saves to character for persistence). The display is defaulted to on in order to not confuse people. Toggle off as you wish. (LeftAlt = F are default keys)
- Refactor some code
- Update README to reflect changes, update mod icon to show more a updated display of the mod.
1.0.5 - Add configuration options to disable the amount, quality, durability, and food on the item drop display even if it would normally show. Request by ZenDragon to have a cleaner UI and only show the icon. Defaulted to On for all of them.
1.0.3/1.0.4 - Add a configuration option to disable the background on the item drop display. (Version 1.0.4 is a README file fix)
1.0.2 - Previously added configuration value is now defaulted to Off. Use scaled screen points and fix the pivot, anchorMin, and anchorMax for the cloned object I'm using to make it more centered above the item on higher screen resolutions.
1.0.1 - Add a configuration option to subtract the Game camera's offset from the world item display position, might help it look more centered on the object. Defaulted to On
1.0.0 - Initial Release