Does +Dex affect the chance to evade sufficiently?
23 posts
• Page 1 of 2 • 1, 2
|
hey,
since i dont get any help in german forums, i gonna ask here what you think. topic: does +dexterity in temp affect the chance to evade sufficiently or can i build my temp without +dex if i want it cheap? Its a shadowblade, the damage is fully based on str (slash). On live you dont need to cap dex (see quotes) - different on uthgard? Livelike: (((Dex + Quick)/2-50)*0.05)+(Evadelevel*5)=%Chance to Evade (((95 + 158)/2-50)*0,05)+(7*5) = 38,8% //without +Dex (((170 + 158)/2-50)*0,05)+(7*5) = 40,7% //with +Dex see here
(source) |
|
With DOL formula, results are
But it's not the one used here. RIP : Ectoplasme
My own version of Uthgard Character Builder |
|
So +75 Dex means +2,62% Evade rate if your formula is right. But i hope i get an official anwser from staff regarding the calculation of the evade rate and the importance of +dex in a sb template.
Last edited by blubbo on Jun 04, 2012 16:21, edited 1 time in total.
|
|
You won't have an clear answer from staff. They will probably say that dex has an influence on evade rate, and nothing more. Uthgard mechanics are secret ! ![]() RIP : Ectoplasme
My own version of Uthgard Character Builder |
|
Well, then i hope to find some ppl who did some tests on it and can tell me something about the influence of dex.
|
|
How would you know that? DEX is same weighted as QUI in the formula.
It leverages your Evade rate depending on your evade level. Its not just a summation. In the formula above evade level does simply add, we have it as multiplier which makes QUI and DEX quite important factors. It's done when it's done. Thanks for your patience.
Every bug gets fixed. Sooner or later. "It is an inescapable law of nature that the amount of satisfaction one gains from achieving something is related to how hard it is and easy things can only elicit a fleeting superficial sort of pleasure." Blue says, "you used macro tools or macro keyboard" Pala says, "i am disabled. and i have a mechanic left hand that can be programed. its hard to play woith one hand" [Appeal] Bxxxxxxxx: "why is RA first aid cann man i stealth use and not unstealth cann man ra if man use unstealth ?????????" BannedUser: "i was not using automate game action my hand was fall on keyboard during i was sleep .... i was completly fall on keyboard ..." |
|
Ok, sorry. I should have said : "I suppose that Uthgard doesn't use the same formula than the one everyone can see in the last version of DOL" https://dolserver.svn.sourceforge.net/s ... culator.cs RIP : Ectoplasme
My own version of Uthgard Character Builder |
|
Same formula.
It's done when it's done. Thanks for your patience.
Every bug gets fixed. Sooner or later. "It is an inescapable law of nature that the amount of satisfaction one gains from achieving something is related to how hard it is and easy things can only elicit a fleeting superficial sort of pleasure." Blue says, "you used macro tools or macro keyboard" Pala says, "i am disabled. and i have a mechanic left hand that can be programed. its hard to play woith one hand" [Appeal] Bxxxxxxxx: "why is RA first aid cann man i stealth use and not unstealth cann man ra if man use unstealth ?????????" BannedUser: "i was not using automate game action my hand was fall on keyboard during i was sleep .... i was completly fall on keyboard ..." |
|
You didn't said that when i send a PM to you 2 months ago
![]() So, did u check if the bug i saw in source was on Uthgard too ? I mean in GameLiving https://dolserver.svn.sourceforge.net/s ... eLiving.cs multiple attacker penalty is applied as a percentage value on a evadechance that is scaled from 0 to 1000. And division by 1000 is done after that. Line 3713 :
So penalty is not 3%, but 0.003%. For an evade chance of 50%, evadeChance will be 500 before this lines. evadeChance -= ( attackerCount - 1 ) * 0.03; -> evadeChance = 500 - (2-1) * 0.0.3 = 499.97 evadeChance *= 0.001; -> evadeChance = (499.97)/1000 = 0.49997, i.e. 49,997% Maybe i missed something but either if should be divided by 1000 before for a 3% constant penalty, or it should be "evadeChance *= (1-( attackerCount - 1 ) * 0.03);" for a 3% relative penalty to evade chance. RIP : Ectoplasme
My own version of Uthgard Character Builder |
|
But Blue, i still get nearly the same results without +dex in template (dunno whats the AbilityBonus is, but since it is a normal addition its not important for comparison):
(1000+158+170-100) * 7 * 0,05 = 42,98% //+75dex (1000+158+90-100) * 7 * 0,05 = 40,18% //+0dex 1) Did i solve this calculation right? 2) Is that the calculation Uthgard uses or only the original DoL-Formula? |
|
Yes your calculation is correct. And yes the effect of DEX and QUI is quite low because of the 1000+ in front which degrades the effect of it.
Uthgard uses DOL formula. I posted it above. It's done when it's done. Thanks for your patience.
Every bug gets fixed. Sooner or later. "It is an inescapable law of nature that the amount of satisfaction one gains from achieving something is related to how hard it is and easy things can only elicit a fleeting superficial sort of pleasure." Blue says, "you used macro tools or macro keyboard" Pala says, "i am disabled. and i have a mechanic left hand that can be programed. its hard to play woith one hand" [Appeal] Bxxxxxxxx: "why is RA first aid cann man i stealth use and not unstealth cann man ra if man use unstealth ?????????" BannedUser: "i was not using automate game action my hand was fall on keyboard during i was sleep .... i was completly fall on keyboard ..." |
|
Hi blue, can you post the formula of miss / block / parry chance, so we can understand well how much is important the weapon skill? And if it change damage too? Thanks, we'll appreciate that a lot! There was a time when Uthgard 1.0 existed and maaaany toons and arrpees arose... but now:
|
|
The famous ones seems correct, if Uthgard uses same as last source of DOL.
BlockChance = [5 + (ShieldSpec-1)*0.5 + (dex*2-100)/40 + MobBonus] * Quality And for block only, multiple opponent penalty depending on number of attackers vs shield size. For guard, GuardChance is GuardChance = BlockChance * (GuardLevel * 3 + 0.05) Size of shield doesn't matter. Parry is same as block, penalty start at 3 attackers, and quality doesn't matter. RIP : Ectoplasme
My own version of Uthgard Character Builder |
|
Thanks for your help, nice to see something to check by math way instead of legends on /broad ^^ But, here on uthgard are the same formulas? And weaponskill where is counted? Thx blue There was a time when Uthgard 1.0 existed and maaaany toons and arrpees arose... but now:
|
|
afaik dex also increases the chance for criticals, so as an SB this should be an important factor anyway
![]() |
23 posts
• Page 1 of 2 • 1, 2
Who is online
Users browsing this forum: No registered users and 7 guests