كود:
if (position == MsgItemInfo.RightWeapon)
{
if (item.Durability > 0)
{
Player.AttackRange += dbi.BaseInformation.AttackRange;
if (ItemHandler.IsTwoHand(dbi.BaseInformation.ID))
Player.AttackRange += 3;
else
{
Player.AttackRange += 2;
}
}
}
if (position == MsgItemInfo.LeftWeapon)
{
if (item.Durability > 0)
{
Player.BaseMinAttack += (uint)dbi.BaseInformation.MinAttack / 6;
Player.Breaktrough += dbi.BaseInformation.BreakThrough;
if (Player.ContainsFlag4(MsgUpdate.Flags4.FreezingPelter))
Player.BaseMinAttack += (uint)((dbi.BaseInformation.MinAttack / 6) + dbi.BaseInformation.MinAttack * Database.SpellTable.GetSpell(13020, this).Power / 100);
else
Player.BaseMinAttack += (uint)dbi.BaseInformation.MinAttack / 6;
Player.BaseMaxAttack += (uint)dbi.BaseInformation.MaxAttack / 6;
}
}