MaxQuest Posted April 4, 2017 Author Posted April 4, 2017 Hehe, haven't considered it yet) PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
Dr <3 Posted April 4, 2017 Posted April 4, 2017 "Maxquest foundation for noobs & casual players" With the founds raised you can finance every year 1 student in the Poe attack speed & other mechanichs science department. 1
Boeroer Posted April 5, 2017 Posted April 5, 2017 (edited) MaxQuest - that piece of software is great. I mean not only that you put in all the formulas and stuff - but also the usability is superb. Not too much info, not too much fuzz, slick and all. And as far as I can see it now also works correctly. Fat thumbs up - from a software developer (if that means anything). Please put a link into the wiki - will prevent a lot of questions here. Also have a look at this: http://forums.obsidian.net/topic/92293-a-dps-spreadsheet-calculatorwip/ Maybe you guys could come up with a really good solution which covers both or something. Edited April 5, 2017 by Boeroer 2 Deadfire Community Patch: Nexus Mods
Boeroer Posted April 5, 2017 Posted April 5, 2017 One thing: there are no fists. I don't know if The Long Pain have different values for speed than normal fists. Deadfire Community Patch: Nexus Mods
Boeroer Posted April 5, 2017 Posted April 5, 2017 When I attack with my monk with the long pain (Swift Strikes, Two Weapon style, padded armor - nothing else) I don't see any recovery (maybe it's too short to be noticed) while the calculator says that there should be recovery left (used stilettos instead). Or maybe my eyes are too old to notice 7 frames of recovery? Deadfire Community Patch: Nexus Mods
Kaylon Posted April 5, 2017 Posted April 5, 2017 (edited) Fists are fast weapons (in theory you could use only 2 weapon types for the calculator). For the recovery it depends what dexterity you have - with less than 6dex you should always see it, while with higher dexterity it will start being skipped (and it should be 0.7frames, not 7frames ). Edited April 5, 2017 by Kaylon
Boeroer Posted April 5, 2017 Posted April 5, 2017 (edited) Maybe, but for example stilettos have less frames than daggers in MaxQuests calculator (albeit only slightly less). My DEX is 17. Another thing: according to the calculator a chanter with Outlander's Frenzy & Sure Handed Ila with durganized Hold-Wall and durganized leather and Guntlets of Swift Action should have no recovery (and maybe has a bit buffer, too - not talking about reloading here). But a test chanter I made (with 24 DEX) still has a recovery bar - not a big one, but it was visible. Thoughts? Edited April 5, 2017 by Boeroer Deadfire Community Patch: Nexus Mods
Kaylon Posted April 5, 2017 Posted April 5, 2017 (edited) Yes, it seems there's a bug in the calculator with Sure Handed Ila - it doesn't apply the 20% recovery reduction, just the reload reduction... Edited April 5, 2017 by Kaylon
Boeroer Posted April 5, 2017 Posted April 5, 2017 (edited) Erm - but in my game it was actually slower than in the calculator. Edited April 5, 2017 by Boeroer Deadfire Community Patch: Nexus Mods
Boeroer Posted April 5, 2017 Posted April 5, 2017 (edited) Another thing: You can't choose one handed single weapon and "nothing" for the offhand. Of course you could always pick a simple nn-durganized shield and get the same results. I mean just for convenience and to avoid confusion of less experienced players. edit: Mind you - I'm not bashing or criticising the software. Jut want to give some hints from a user's perspective. Still totally overwhelmed by its awesomeness. Edited April 5, 2017 by Boeroer 1 Deadfire Community Patch: Nexus Mods
MaxQuest Posted April 5, 2017 Author Posted April 5, 2017 (edited) MaxQuest - that piece of software is great. I mean not only that you put in all the formulas and stuff - but also the usability is superb. Not too much info, not too much fuzz, slick and all. And as far as I can see it now also works correctly. Fat thumbs up - from a software developer (if that means anything). Thanks) Please put a link into the wiki - will prevent a lot of questions here. Sure. But I have planned to review the calculator first, in order to be sure that everything is 100% right. Atm I'm getting closer to a deadline through, and this will have to wait till weekend. Also have a look at this: http://forums.obsidi...-calculatorwip/ Maybe you guys could come up with a really good solution which covers both or something. Maybe. I was thinking about making a damage calculator as a separate utility, where you could copy-paste the computed speed-data json-string. (again, if I'll have time and desire to do so). While Livegood118 has adviced to add damage section to existing speed calculator. Interesting what would be the preffered way (assuming that it would possible to add such section AND make it both comfortable from UX point of view and responsive for mobile). One thing: there are no fists. I don't know if The Long Pain have different values for speed than normal fists.I haven't added fists yet, because they require extra logic. Character can dual-wield with fist in main-hand and sabre in off-hand; but can't viceversa. Also if would have to force fists to be considered dual-wielding, I would have to link both wieldable selects. I.e. I have to think first what are possible combinations, how they should be selected and linked together. As for long pain - tbh I never tested their attack/recovery. This will have to wait till weekend. When I attack with my monk with the long pain (Swift Strikes, Two Weapon style, padded armor - nothing else) I don't see any recovery (maybe it's too short to be noticed) while the calculator says that there should be recovery left (used stilettos instead). Or maybe my eyes are too old to notice 7 frames of recovery?I've made an error: Swift Strikes were considered as 0.20 bonus, instead of 0.25. (updated the calculator now) Swift Strikes = 1.20 recovery_coef = max(0, 1 - 2 * (0.4 - 0.2)) / 1.2 = 0.6 / 1.2 = 0.5 attack_duration (at 10 DEX) = 19.1 (assuming it is indeed like that of stilletos) attack_duration (at 17 DEX) = 15.8 recovery_duration (at 17 DEX) = 15.8 * 0.5 = 7.9 frames Swift Strikes = 1.25 recovery_coef = max(0, 1 - 2 * (0.45 - 0.2)) / 1.2 = 0.5 / 1.2 = 0.41 recovery_duration (at 17 DEX) = 15.8 * 0.41 = 6.4 frames Even with Swift Strikes (1.25) there is still some recovery remaining. There would be recovery even if Swift Strikes would stack multiplicatively with Two-Weapon Style. recovery_coef = max(0, 1 - 2 * ((1.25 * 1.2 - 1) - 0.2)) / 1.2 = 0.4 / 1.2 = 0.33 recovery_duration (at 17 DEX) = 15.8 * 0.33 = 5.2 frames Are you sure that your padded armor is not durganized? In that case the recovery would be 3.2 frames, which indeed could be unnoticed. Another thing: according to the calculator a chanter with Outlander's Frenzy & Sure Handed Ila with durganized Hold-Wall and durganized leather and Guntlets of Swift Action should have no recovery (and maybe has a bit buffer, too - not talking about reloading here). But a test chanter I made (with 24 DEX) still has a recovery bar - not a big one, but it was visible. Thoughts?speed_coef = (1.25*1.15*1.15*1.2 - 1) + 0.2 - 0.5 - (0.3 - 0.15) = 0.98 + 0.3 - 0.15 = 1.13 recovery_coef = max(0, 1 - 2 * 1.13) / 1.2 = 0 Hmm, it's indeed zero recovery. Are you sure that chanter's Hold Wall is indeed durganized? And that he is not affected by any negative effects? (Dazed, Cautious Attack) Fists are fast weapons (in theory you could use only 2 weapon types for the calculator).Technically 4 very fast: 0.636s attack duration (stilletos and rapier) (when frapsing it's almost unoticeable; but extended log reports this exact value) fast: 0.666s attack duration (the rest of fast melee weapons) average: 1s attack duration (medium and slow melee weapons; fast ranged weapons) slow: 1.5s attack duration (average and slow ranged weapons) Yes, it seems there's a bug in the calculator with Sure Handed Ila - it doesn't apply the 20% recovery reduction, just the reload reduction...There are two Sure-Handed Ila effects in calculator: one in RateOfFireMult (affects recovery) and second in ReloadSpeedCoef (affects reloading) Have linked them together now, such that one you enable one, the second is enabled as well, and viceversa. Another thing: You can't choose one handed single weapon and "nothing" for the offhand. Of course you could always pick a simple nn-durganized shield and get the same results. I mean just for convenience and to avoid confusion of less experienced players.True) Along with fists it didn't make into current release. I didn't want to add "nothing" as quick solution, because "durganized nothing" could cause confustion as well Edited April 5, 2017 by MaxQuest 1 PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
Livegood118 Posted April 5, 2017 Posted April 5, 2017 Definitely put me down for having a one-stop shop damage calculating utility. I feel like any time someone's trying to work out their attack speed it's probably a means to an end to working out overall damage of a character, or giving a pretty good indication of that. To that extent, having it on the same page seems to make sense. Given how neatly presented/tight the attack speed information is if all someone wanted to do was to work it out they could probably just do that. Or there could be a "master calculation" utility that has all of the various bits and bobs and then separate tabs for separate calcs if the person wanted. The absolute dream would be being able to easily compare two or more different equipment/ability set-ups against each other. The ****-my-pants-from-happiness feature would be to be able to get some nice graphs as well.
swapoer Posted April 5, 2017 Posted April 5, 2017 Hi MaxQuest. I am using your calculator, but when it come to penetrating shot coupled with other speed bonus the result is always different from what I compute myself. For Example: When using a speed enchant hunter bow with penetrating shot modal on, the calculator show the recover frame is 50f, assuming the character is naked and has a Dex of 10. From the original post, I think the color of RangedAttackSpeedMult is blue, so I think it should be calculated as below Blue_Coef = 1.2*0.8-1=-0.04 Speed_Coef = Blue_Coef + Red_Coef = -0.04 - 0.5 = -0.54 Recover Fram = 30*(1-2*Speed_Coef)/Recovery_Factor=30*(1-2*(-0.54))/1.2=52 But the Calculator seem calculate the Blue_Coef as below Blue_Coef = (1.2 - 1) + (0.8-1) = 0 So it gives a final result of 50f. Did I get your original post in a wrong way?
Boeroer Posted April 5, 2017 Posted April 5, 2017 MaxQuest: Dazing... that might be. Good hint. I tested in a real encounter and it's possible that I was affected by some affliction that I didn't notice. Keep up the good work! I know that deadline stuff - good luck! Deadfire Community Patch: Nexus Mods
MaxQuest Posted April 5, 2017 Author Posted April 5, 2017 (edited) I feel like any time someone's trying to work out their attack speed it's probably a means to an end to working out overall damage of a character, or giving a pretty good indication of that.Makes sense. The absolute dream would be being able to easily compare two or more different equipment/ability set-ups against each other.Oh my That would be a quite titanic effort. Although I can imagine different "weapons" / but one "armor + gloves + buffs + effects" setup. Hi MaxQuest. I am using your calculator, but when it come to penetrating shot coupled with other speed bonus the result is always different from what I compute myself. ... Did I get your original post in a wrong way? Yeap. The blue color indicates that effects which belong to that category stack multiplicatively between themselves. At the same time it's important to keep in mind that end values of different categories stack additively. RangedAttackSpeedMult contains only one single effect: Penetrating Shot. Thus it stacks additively with everything else. It's more like: Blue_Coef1 = 1.2 - 1 Blue_Coef2 = 0.8 - 1 Speed_Coef = Blue_Coef1 + Blue_Coef2 + ... Recovery_Coef = max(0, 1 - 2 * Speed_coef) / 1.2 MaxQuest: Dazing... that might be. Good hint. I tested in a real encounter and it's possible that I was affected by some affliction that I didn't notice. Keep up the good work! I remember fighting Alpine Dragon. Dual-wielding fists, naked + DAoM, and somehow I was still seeing recovery. It was because of dazing) Edited April 5, 2017 by MaxQuest PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
MaxQuest Posted April 9, 2017 Author Posted April 9, 2017 When I attack with my monk with the long pain (Swift Strikes, Two Weapon style, padded armor - nothing else) I don't see any recovery (maybe it's too short to be noticed) while the calculator says that there should be recovery left (used stilettos instead). Or maybe my eyes are too old to notice 7 frames of recovery?I have just tested it in game. Monk with padded armor, swift strikes, two-weapon style and long pain. I've frapsed him attacking a rooted enemy. He had 10 DEX and 7-8 frames of recovery So it's alive calculator is working) I've optimized it a bit, added empty hand and total duration comparison: link. PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
Boeroer Posted April 9, 2017 Posted April 9, 2017 (edited) I had 17 DEX. Maybe that's a reason why I thought I saw no recovery. I also found another possible reason why I can't see recovery from time to time although there should be a tiny bit left: My computer and the graphics card are rather old. In fights with a lot of combatants and/or graphic effects (blights, whisps and stuff) the fps go down so massively that display of recovery can get skipped entirely. Glad that the calculator works properly. Awesome stuff! It already helped me to spare a lot of time with a max-DEX-chanter build I was toying around with. Sooo convenient... Edited April 9, 2017 by Boeroer 1 Deadfire Community Patch: Nexus Mods
MaxQuest Posted April 9, 2017 Author Posted April 9, 2017 Recovery indeed can be visually skipped in case of stutter. I was limiting my frame rate at 30, and monitoring it with fraps to make sure that it is constant. I am glad that it turned out that convenient, I had to quite wrap my head around the UX part PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
Boeroer Posted April 9, 2017 Posted April 9, 2017 Always the hardest part. 1 Deadfire Community Patch: Nexus Mods
MaxQuest Posted April 15, 2017 Author Posted April 15, 2017 Was kinda lazy to add checks around durganized fists, long pain + shield and such combinations. But finally did it. We have fists now 6 PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
peddroelm Posted April 16, 2017 Posted April 16, 2017 (edited) very nice. Still if you ever find the drive there are still some missing features: Drop down - quick-search filter select of all "weapons" in the game (including summoned/spell equivalents/ shape-shift forms/ ranger pets ) - don't need to add them all at once. And all the class combat damage relevant perks. This would allow you to calculate single target DPS (all graze/all hits & all crits DPS). And then of course you need to be able to compare (multiple) different setups and ability to save load-ups and share them easily (load up the different choices in the URL perhaps) .. This would result in a great off-game character/party planner/builder .. Edited April 16, 2017 by peddroelm
Halfadozensixes Posted May 13, 2017 Posted May 13, 2017 Hi Maxquest, can you change the speed calculator to allow up to 43 DEX? I believe wood-elf/godlike ciphers can achieve this with deadfire archipelago (+1), wild leech (+10), food buff (+2), rest bonus (+3), prostitute bonus (+2), viettro's boots (+4), skaen's boon (+1), and effigy's resentment (+1) and wanted to play around with a machine gun build by reducing action by 99% and using an arquebus. It may be worth using other firearms and even a priest with minor avatar or a wizard with martial power instead of wild leech due to diminishing returns of action speed decrease from dexterity (due to ~5 frame inter-action delay). Using your calculator would save me from multiple complex calculations. Many thanks for your hard work on it so far: it's a fantastic tool.
MaxQuest Posted May 13, 2017 Author Posted May 13, 2017 Sure, why not. Increased max DEX up to 43. PoE1 useful stuff: attack speed calculator, unofficial patch mod, attack speed mechanics, dot mechanics, modals exclusivity rules PoE2 useful stuff: community patch, attack speed mechanics, enemy AR and defenses
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now