Quote from lack;1249945:
How much faster does a fast bow(2000 range) aim than a normal bow(2000 range)? Planning to go rapid fire build with chinese(elf) so i have to choose between dkb or wing bow.
Aim speed is proportional to the maximum range of your weapon versus the distance to your target. Attack speed does not influence your aim speed.
Note that crossbows have a hidden +25% aim speed bonus to light ranged skills.
[Image: http://i50.tinypic.com/2epmv5x.png]
[CODE] var aPos = Attacker.GetPosition();
var tPos = Target.GetPosition();
var distance = Math.Sqrt((Math.Pow(((float)aPos.X - (float)tPos.X), 2) + Math.Pow(((float)aPos.Y - (float)tPos.Y), 2)));
var aimTime = (DateTime.Now - Attacker.Temp.AimStart).TotalMilliseconds;
var aimRate = Math.Min(320 / distance, 1);
var aimPercent = Math.Min(aimTime * aimRate * aimBoost / 10 + aimInitial, 99);
var overTime = aimTime - (990 / (aimRate * aimBoost)); // Time after 99%
if (aimPercent == 99 && overTime > 1000)
aimPercent = 100;
if (Target.IsMoving)
{
if (Target.IsWalking && aimPercent > 95)
aimPercent = 95;
else if (!Target.IsWalking && aimPercent > 90)
aimPercent = 90;
}[/CODE]