From f607008e480c0576f0763348f26b951defc89443 Mon Sep 17 00:00:00 2001 From: WarrentyExpired Date: Thu, 16 Jul 2026 17:32:28 -0400 Subject: [PATCH] #W# Tweaking weapon damage a bit. --- Scripts/Items/Weapons/BaseWeapon.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Scripts/Items/Weapons/BaseWeapon.cs b/Scripts/Items/Weapons/BaseWeapon.cs index a3ab8e4..d44bf03 100644 --- a/Scripts/Items/Weapons/BaseWeapon.cs +++ b/Scripts/Items/Weapons/BaseWeapon.cs @@ -924,6 +924,10 @@ namespace Server.Items GetBaseDamageRange( attacker, out min, out max ); + double tactics = attacker.Skills[SkillName.Tactics].Value; + int gap = max - min; + min += (int)(gap * ( tactics / 500.0)); + return Utility.RandomMinMax( min, max ); }