[HUGE PROBLEM] 5165 archer bow damage bug

04/28/2010 13:51 masternek#1
hey guys :x

i have a big problem...

i have a 5165 conquer server, and i found a huge bug x_X

the archer's bow have a bug that makes them kill every player with 1 shot o_o

they cause a huge damage.... can someone helpme fix this?

someone helpme pls? xD
04/28/2010 20:51 araXis#2
Dude I don't know but,you must learn c++ or c# to fix these problem,Or rewrite your WeaponMaster Npc.
04/28/2010 21:23 masternek#3
well i know some c#, but i dont really know how to fix this ='(

please some help? x_X
04/29/2010 00:37 ©Hyperlink#4
Check your damage calculations for dodge.
Dodge is the defense against ranging.
What items use dodge?
Boots do.
Without dodge, you can't really protect archer damage.
Also check how high your damage of the archer is.
Then try make it smaller :)
04/29/2010 00:40 -Spirits-#5
Don't double post.
If it's YOUR source then you must have coded it, so FIX it. Also, if it's your source- that means you know how to code.
04/29/2010 05:38 Arcо#6
Well did you already fix your weaponmaster and magicartisian?
04/29/2010 10:57 masternek#7
yes, i fixed the 120-130 upgrader, and , how do i check archers bow dmg? o.O
04/29/2010 11:38 araXis#8
Lol test it with any archer.
04/29/2010 12:40 ©Hyperlink#9
Quote:
Originally Posted by masternek View Post
yes, i fixed the 120-130 upgrader, and , how do i check archers bow dmg? o.O
Find ur damage calculation and find the part for ranging.
Then check if you have damage get lower, if players have dodge.
04/30/2010 04:32 ktamer#10
Check Character.cs

TakeAttack(Character

here's a big hint

Damage = (uint)((Damage * (((double)(306 - EqStats.Dodge)) / 300)) / 8);

That doesn't account for everything just the main arrows itself. Good Luck though.