
Signs
Add information about your world to signs! Easy to configure and use.
Date uploaded | 2 weeks ago |
Version | 0.10.1 |
Download link | jcdcdev-Signs-0.10.1.zip |
Downloads | 374 |
Dependency string | jcdcdev-Signs-0.10.1 |
This mod requires the following mods to function

denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.2202
ValheimModding-Jotunn
Jötunn (/ˈjɔːtʊn/, 'giant'), the Valheim Library was created with the goal of making the lives of mod developers easier. It enables you to create mods for Valheim using an abstracted API so you can focus on the actual content creation.
Preferred version: 2.25.0README
jcdcdev.Valheim.Signs

This is a BepInEx plugin for Valheim that allows you to configure signs to display in-game information.
Feel free to suggest other useful signs!
Features
Simply place any sign and set the text to one of the following options, e.g {{onlineCount}}
.
- Online Count
- Death Count
- Death Leaderboard
- Comfort
- Stamina
- Health
- Skills
- Game Time
- Actual Time
- Day Percentage
- Night Countdown
- Smelter/Eitr Content
- Storage Content
Online Count
Displays the current number of players online.
{{onlineCount}}
Death Count
Displays the current player's number of deaths on this world.
{{deathCount}}
Option | Description | Example | Example Output |
---|---|---|---|
playerId |
The player's name or ID. Defaults to the current player if left blank |
{{deathCount jcdc}} |
3 |
You can change each player's death by editing the Offset
value stored in BepInEx/config/jcdcdev.Valheim.Signs/death-leaderboard.json
Death Leaderboard
Displays the players with the most deaths on this world.
{{deathBoard}}
Option | Description | Example | Example Output |
---|---|---|---|
count |
The number of players to show Defaults to 3 if left blank |
{{deathBoard 2}} |
1. JIM: 3 2. MIJ: 1 |
You can change each player's death by editing the Offset
value stored in BepInEx/config/jcdcdev.Valheim.Signs/death-leaderboard.json
Total Server Deaths
Displays the total number of deaths on this world.
{{totalDeaths}}
Option | Description | Example | Example Output |
---|---|---|---|
l |
Removes the label | {{totalDeaths l}} |
3 |
Comfort
Displays the current comfort level of the player.
{{comfort}}
Stamina
Displays the current stamina level of the player.
{{stamina}}
Health
Displays the current health level of the player.
{{health}}
Skills
Displays the skill level of a player.
{{skill bows}}
Skills
- Axes
- Blocking
- BloodMagic
- Bows
- Clubs
- Crossbows
- ElementalMagic
- Fishing
- Jump
- Knives
- Pickaxes
- Polearms
- Ride
- Run
- Sneak
- Spears
- Swim
- Swords
- Unarmed
- WoodCutting
Options
Option | Description | Example | Example Output |
---|---|---|---|
emoji |
Adds an emoji | {{skill bows emoji}} |
🏹 100 |
label |
Adds a label | {{skill bows label}} |
Bows 100 |
playerId |
The player's name or ID. Defaults to the current player if left blank |
{{skill bows jcdc}} |
100 |
Game Time
Displays the current in-game time.
{{gameTime}}
Options
Option | Description | Example | Example Output |
---|---|---|---|
12 |
Outputs in 12 hour format | {{gameTime 12}} |
12:00 AM |
s |
Adds seconds to the time | {{gameTime s}} |
12:00:00 |
emoji |
Outputs as an emoji | {{gameTime emoji}} |
🕛 |
Actual Time
Displays the current time.
{{actualTime}}
Options
Option | Description | Example | Example Output |
---|---|---|---|
12 |
Outputs in 12 hour format | {{actualTime 12}} |
12:00 AM |
s |
Adds seconds to the time | {{actualTime s}} |
12:00:00 |
f |
Outputs full date and time | {{actualTime f}} |
06 September 2024 09:08 |
g |
Outputs date and time | {{actualTime g}} |
06/09/2024 09:08 |
emoji |
Outputs as an emoji | {{gameTime emoji}} |
🕛 |
Day Percentage
Displays the current day percentage.
{{dayPercentage}}
Night Countdown
Displays the (real) time in minutes until the night.
{{nightCountdown}}
Options
Option | Description | Example | Example Output |
---|---|---|---|
s |
Adds seconds to the time | {{nightCountdown s}} |
02:12 |
Smelter/Eitr Content
Displays the contents of the nearest smelter or eitr.
{{smelterContent}}
Options
Option | Description | Example | Example Output |
---|---|---|---|
l |
Removes the label | {{smelterContent l}} |
10 5 |
f |
Only displays fuel | {{smelterContent f}} |
WOOD: 10 |
o |
Only displays ore | {{smelterContent o}} |
COPPER: 5 |
Storage Content
Displays the contents of storage such as chests.
{{items}}
Options
Option | Description | Example | Example Output |
---|---|---|---|
s |
Displays number of stacks | {{items s}} |
WOOD: 3 IRON: 1 |
l |
Removes the label | {{items l}} |
10 5 |
t |
Counts all items across all valid storage objects (supports name filters & search radius) | {{items total}} |
COPPER: 10 |
search_radius |
The search radius for the sign to find storage objects Defaults to the nearest storage object if left blank or < 1 |
{{items iron 5}} |
IRON: 10 |
item_name |
Only displays the specified item name (supports multiple names) | {{items wood iron}} |
WOOD: 150 IRON: 20 |
Installation
This mod must be installed on the server and all clients to work. Players will not be able to join the server/your game if they do not have the mod installed.
If you're using a mod installer, you can likely ignore this section.
Installation
Install BepInEx
- Download BepInEx,
- Extract everything inside
BepInEx_Valheim
into your Valheim folder- e.g
C:/<PathToYourSteamLibrary>/steamapps/common/Valheim
- e.g
Install jcdcdev.Valheim.Signs
- Download the mod
- Extract the ZIP
- Place the
jcdcdev.Valheim.Signs
folder intoBepInEx/plugins
of your Valheim folder.
CHANGELOG
Changelog
0.10.1
Changes in 0.10.1
- 🌟 feature: Support JotunnLib 2.25.0 b3a1566
0.9.0
Changes in 0.9.0
- 🐝 refactor: use abstract SimpleSign class and caching 2148c17
0.8.0
Changes in 0.8.0
- 🌟 feature: add offset to player death leaderboard d599c37
0.7.9
Changes in 0.7.9
- 🌟 feature: storage content sign 5da77e2
0.7.8
Changes in 0.7.8
- 🌟 feature: support playerId/username for Skill Sign (Experimental) 6d9f624
0.7.7
Changes in 0.7.7
- 🐞 fix: remove test exception 0131f4c
0.7.6
Changes in 0.7.6
- 🌟 feature: Support JotunnLib 2.24.3 0d6ce89
0.7.5
Changes in 0.7.5
- 🌟 feature: Support JotunnLib 2.24.2 66f1de6
0.7.4
Changes in 0.7.4
0.7.3
Changes in 0.7.3
- 🌟 feature: Support JotunnLib 2.23.2 d5b7314
- 🌟 feature: Support JotunnLib 2.23.2 705c363
- 📄 Update GitVersion.yml 8821f3a
- 📄 Update build-template.yml 1fd1f44
0.7.2
Changes in 0.7.2
- 🌟 feature: Support JotunnLib 2.23.1 1175a7f
0.7.1
Changes in 0.7.1
- 🌟 feature: Support JotunnLib 2.23.0 3aca6e0
0.7.0
Changes in 0.7.0
- 🐞 fix: incorrect error logging when calculating time 12430ee
- 🌟 feature: Smelter/Eitr Content Sign ca83a42
0.6.0
Changes in 0.6.0
- 🐝 refactor: add sln file 1c9c789
- 🌟 feature: Day Percent Sign c0701bb
- 🌟 feature: Night Countdown Sign a403f75
- 🌟 feature: add issue report logging 8714e93
0.5.4
Changes in 0.5.4
- 🌟 feature: Support JotunnLib 2.22.0 f51af6c
0.5.3
Changes in 0.5.3
- 🌟 feature: Support JotunnLib 2.21.3 9d1a9c8
0.5.2
Changes in 0.5.2
- 🌟 feature: Support JotunnLib 2.21.2 1cf29a5
0.5.1
Changes in 0.5.1
- 🌟 feature: Support JotunnLib 2.21.1 b93dc3e
0.5.0
Changes in 0.5.0
- 🌟 feature: Support JotunnLib 2.21.0 53204ed
0.4.5
Changes in 0.4.5
- 🐝 refactor: move to modern .NET SDK 534b28b
- 🐞 fix: skill sign exceptions in log on server start ffac64b
0.4.4
Changes in 0.4.4
- 🐞 fix: emoji clock 64f11fc
0.4.3
Changes in 0.4.3
- 🌟 feature: emoji clock 9d62959
- 🌟 feature: support multiple patterns per sign d2cd9da
- 🌟 feature: add emoji and label option to skill sign 6239449
0.4.2
Changes in 0.4.2
0.4.1
Changes in 0.4.1
- 🐞 fix: thunderstore missing dependencies 1c369e2
0.4.0
Changes in 0.4.0
- 🐝 refactor: move to Jotunn d6aa78b
- 🌟 feature: skill sign 92f868d
- 🐝 refactor: improve error messages cbe5226
0.3.2
Changes in 0.3.2
0.3.1
Changes in 0.3.1
- 🐞 fix: leaderboard not created on server start 4a85f80
0.3.0
Changes in 0.3.0
0.2.1
Changes in 0.2.1
0.2.0
Changes in 0.2.0
- 🌟 feature: current day sign f757a2e
- 🌟 feature: fuzzy time sign (e.g Morning, Afternoon, Evening) 1643bde
- 🌟 feature: game time sign (e.g 14:00, 2:00 PM) b297fb9
- 🐞 fix: comfort sign 7fa0d8b
- 🐞 fix: inconsistent hover text 7b8667c
- 🐞 fix: ensure signs update 6c0eb40
- 🧹 chore: improve fuzzy time wording eb39a3c
- 🌟 feature: support AzuSigns ac659ac
- 🐝 refactor: extension methods & assembly version 526ed94
- 🌟 feature: actual time sign ce64263
- 🌟 feature: player health sign f1c283f
- 🌟 feature: player stamina sign 6cac105
- 📖 doc: screenshots 6469319
- 📖 doc: README ca6632e
- 📖 doc: add icon 317540d