On : PlayerHurt
C# My Plugin
when player shoot at head of victim the damage was bugged but at chest it's fine
Fougerite 1.5.6C V2
C# My Plugin
C#:
if (!(he.Attacker is Fougerite.Player))
{
return;
}
var Attacker = (Fougerite.Player)he.Attacker;
var Victim = (Fougerite.Player)he.Victim;
string WeaponName = he.WeaponName;
he.DamageAmount = 0;
Fougerite 1.5.6C V2