You are viewing a potentially older version of this package. View all versions.
Tristan-Valheim_PvP_Tweaks-1.0.7 icon

Valheim PvP Tweaks

Absolutely necessary features for PvP in Valheim. Can also be used for a variety of PvE gameplay.

Date uploaded a year ago
Version 1.0.7
Download link Tristan-Valheim_PvP_Tweaks-1.0.7.zip
Downloads 1019
Dependency string Tristan-Valheim_PvP_Tweaks-1.0.7

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
ValheimModding-Jotunn-2.14.6 icon
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.14.6

README

Pvp in vanilla Valheim is quite boring and monotonous. The mod was created to fix it!

Battle Status

A viking who commits an act of aggression towards another viking will now receive the Battle status effect. While the viking is in battle, he cannot teleport. And if he decides to escape from the battlefield by leaving the game, everyone in discord will immediately find out) Because a viking never runs away from battles!

Tamed animals are now useful

They now know how to protect the ward. Any hostile viking in the ward zone will be immediately attacked by tamed animals that guard it!

Ping of death on the map

If a viking is dead, all other vikings in the detection radius will immediately know about it. And they will be able to steal loot from the grave, perhaps? Or wait for the owner?

Weapons balancing!

Some weapons are not balanced for pvp. To fix this, the mod adds the ability to configure their characteristics. The mod allows you to configure the damage of swords, staffs and crossbow.

Using this options is highly recommended, because this will add to the list of weapons that can be used effectively in PvP!

Customizable boss powers

Boss powers are also too unbalanced for PvP, so the mod has the ability to adjust the duration and recovery time of each boss power.

Other features:

  • if the player connects to the server where the mod is installed, the mod configuration is automatically synchronized with the configuration on the server
  • it is possible to make the game console unavailable, which may be useful for playing on the server
  • for more convenience, it is possible to reset the cooldown of the boss's power automatically when changing power
  • the mod has the ability to show a kill feed in the discord channel
Mod API (for modders) Client-side. On the client-side there is the ability to track the killing of creatures and players. It can be used, for example, for a kills counter and statistics.
//	called by the owner of the location when some creature, including the player, dies 
CharacterKillTracker.OnCharacterDead += (killedCharacter, killer, weapon) =>
{
	//  some logic
};

//	called when a player kills some creature, including another player
CharacterKillTracker.OnCharacterKilled += (characterName, weapon) =>
{
	//  some logic
};

Server-side. All kills, including creature kills, can also be tracked on the server-side

KillFeed.OnCharacterKilled += (killData) =>
{
	if (killData.characterIsPlayer)
	{
		//  killed player
		var zdo = killData.characterZdo;
		var peer = killData.characterPeer;
	}

	if (killData.attackerIsPlayer)
	{
		//  someone killed by player
		var zdo = killData.attackerZdo;
		var peer = killData.attackerPeer;
	}
};

Find me on Discord if you got feature request / bug report / found incompatibility with another mod

Typedef#3996 https://discord.gg/MjQZKuB4z2

Changelog

  • 1.0.7 Added option to configure damage of crossbow.
  • 1.0.6 Added option to modify characteristics of new magical staffs.
  • 1.0.5 Removed configuration of swords attack angle. It was a bit balanced by Valheim devs. Applying damage modifier to new 2-handed sword.
  • 1.0.4 Mistlands update. Also compatible with previous game version. Added option to modify new Boss power.
  • 1.0.1 - 1.0.3 minor bugfixes.
  • 1.0.0 Initial release.

CHANGELOG

  • 1.0.18
    • Fixed auto-equipment of items in battle
    • Added an option to change the speed of health regeneration in battle
    • Added a separate message format to discord for the death of a player in pvp
  • 1.0.11 - 1.0.17
    • Fixed compatibility with new game versions
  • 1.0.10
    • Added an option to configure tomb stone boost and skill loss at death
  • 1.0.9
    • Added an option to prevent changing equipment in combat
  • 1.0.8
    • Minor update. Fixed discord webhook
  • 1.0.7
    • Added option to configure damage of crossbow.
  • 1.0.6
    • Added option to modify characteristics of new magical staffs.
  • 1.0.5
    • Removed configuration of swords attack angle. It was a bit balanced by Valheim devs.
    • Applying damage modifier to new 2-handed sword.
  • 1.0.4
    • Mistlands update. Also compatible with previous game version.
    • Added option to modify new Boss power.
  • 1.0.1 - 1.0.3
    • minor bugfixes.
  • 1.0.0
    • Initial release.