Yesterday Cecily trolled the
https://wiki.project1999.com/Game_Mechanics wiki page. Luckily he has been dealt with, but unfortunately Bcbrown and Loramin transcribed the
combat formulas incorrectly in a few places.
Hopefully this will be fixed soon. For now, you can get the accurate information here:
https://wiki.project1999.com/Combat_Mechanics
On the game mechanics page, the Archery section should look something like:
Quote:
DamageDoneModifier = 1
If Archery:
DamageDoneModifier = 2
If Archery and Ranger and Mob is not Rooted and Mob is not Moving:
DamageDoneModifier = 1
DamageDone = DamageDone / DamageDoneModifier
|
On the game mechanics page, the ExtraPercent calculation is missing the maxExtra clamp. It should look something like:
Quote:
ExtraPercent = 100 + (BaseBonus * <random value between 0.0 and 1.0>)
If ExtraPercent > maxExtra:
ExtraPercent = maxExtra
|