Quote (piedpiper18 @ Jan 29 2010 03:29am)
Do you have a ds nig? I wanna test.
The reason I'm wondering is because I'm wearing a druid 2/20/20/30frw circlet and I can't see a difference in speed when I take it off lol.
I hope this clears some things up:
Code
Screen Size Visible Screen Width Height
640 x 480 640 x 432 13.3 yards 18 yards
800 x 600 800 x 552 16.7 yards 23 yards
Code
EffectiveWalkSpeed = BaseWalkSpeed * (1 + Skill_FRW / 100 + [Item_FRW * 150 / (Item_FRW + 150)] / 100 + Armor_Speed / 100)
EffectiveRunSpeed = BaseRunSpeed + BaseWalkSpeed * (Skill_FRW / 100 + [Item_FRW * 150 / (Item_FRW + 150)] / 100 + Armor_Speed / 100)
ChargeSpeed = BaseRunSpeed * (1 + Skill_FRW / 100 + Armor_Speed / 100) * 150%
* BaseWalkSpeed is 4 yards/second for all characters
* BaseRunSpeed is 6 yards/second for all characters
* BaseChargeSpeed is 9 yards/second.
* Skill_FRW is skill based FRW minus slow effects
* Item_FRW is item based FRW
* [] indicates rounding down.
* Armor_Speed is the sum of the speed reduction from armor and shield (a negative number). The reduction is -5 for medium armors/shields and -10 for heavy armor/shields. Another way to figure out this penalty is subtracting 0.4 and 0.2 yards from the chart below for heavy and medium armor.
Code
Run Speed (Speed = yards per second)
FRW Speed FRW Speed FRW Speed
O 6 60 7.68 120 8.64
5 6.16 65 7.80 125 8.70
10 6.36 70 7.88 130 8.76
15 6.52 75 8.00 135 8.82
20 6.68 80 8.08 140 8.88
25 6.84 85 8.16 145 8.94
30 7.0 90 8.24 150 9.00
35 7.12 95 8.32 155 9.04
40 7.24 100 8.40 160 9.08
45 7.36 105 8.46 165 9.12
50 7.48 110 8.52 170 9.16
Basically, it might not be visible to the naked eye, but the difference is pretty significant.
My assassin's base speed is 6 yards/second (or can run about 36% across and 26% up the screen and in one second on 800 x 600 resolution).
With the following items:
30 frw sdancers
30 frw helm
...my frw goes to:
6 + 4 * (0 + [60 * 150 / (60 + 150)] / 100 + 0) = 7.71428571 yards/second (or about 46% across and 33% up the screen in one second).
If I wear gothic plate (medium armor), my frw goes to:
6 + 4 * (0 + [60 * 150 / (60 + 150)] / 100 + (-5)/100) = 7.51428571 yards/second (44% across and 32% up)
If I wore no frw gear and gothic plate, my frw would be 5.8 yards / second
Hopes this helps etc.