Originally Posted by Kharlis
I started on a dps calculator a few weeks ago, haven't really gotten around to finishing it as i've been a tad busy.
The real problem im having is modeling naturesgrace proc's it really throws off any casting cycle, anyone have any good suggestions of how to go about this? (it's stumped me and is the reason i stopped working on this  )
|
Lets talk about this for a moment.
One way to model it for starfire would be: Damage / (3.5 - (.1 * Starlight Wrath) - (.5 * crit%)) for just using starfire.
As far as cycles go, IS-SFx3-Wrath is probably the best sustainable cycle, replacing the Wrath with another SF when Grace procs. Model this by multiplying the damage of each cycle by the chance for it to occur. Keep in mind the SFx4 requires 3 NG procs to be 12 seconds, if only 2 procs occurs it becomes a 12.5 "extended" second cycle. 4 Procs is extremely rare, but you're still best off waiting the .5 seconds to start the next cycle instead of trying to fit a wrath in there. And with only 1 proc you're better off casting wrath instead of extending the cycle by a full second.
(ISdmg + (SFdmg * 3) + Wrathdmg)/12 * ((1-crit)^4 + ((1-crit)^3 * crit) +
(ISdmg + (SFdmg * 4))/12.5 * ((1-crit)^2 * crit^2) +
(ISdmg + (SFdmg * 4))/12 * ((1-crit) * crit^3 + crit^4)
Feel free to correct my math there, I know it's longer than necessary.