hello there, nice routine
but i have a doubt. How are the calculations on rake and rip strenght? it seems the routine only redfresh when they are over and not when we got procs.
Are those calculations based on agility only or on mastery too for those with RoRo?
Thank you
I know I have said this before in the past, but it seemed to got overlooked, but this profile is not using FoN charges correctly, it seems to be dumping them randomly with no trinket procs. Basically, outside of trinket procs they should NEVER be dumped, only reason to use one without a proc is if you get capped at 3 because of bad trinket RNG, and even then you only use 1 so they aren't wasted.
If you have Rune of Reorigination, you want to dump ALL charges with sub 2 seconds left in the buff(ideally it is <1 second, but this tends to have the last one used without the RoRo buff, resulting in a weak treant rip, so 2 seconds solves this problem.) Also, the reason for waiting to dump them until the buff is about to run out is the treant's rake is a snapshot buff which IS affected by the massive mastery buff from RoRo proc, while their melee attacks ARE NOT snapshot, they are real time, so you want them to be attacking the boss AFTER the proc expires so you regain all of your haste and crit.
With all other +Agility proc trinkets, ALL charges should be dumped once they proc, ESPECIALLY if RoRo is procced and above the >2 second threshold.
Same as my previous posts about FoN, dots so not seem to have damage modifiers/procs coded in, so it is a dps loss not overwriting with stronger rips and rakes
Would anyone be willing to work on settings for guardian FC?
This routine can handle it I'd just love some guidance on setup.
hello there, nice routine
but i have a doubt. How are the calculations on rake and rip strenght? it seems the routine only redfresh when they are over and not when we got procs.
Are those calculations based on agility only or on mastery too for those with RoRo?
Thank you
public static double Rake_sDamage
{
get
{
double Rake_sAP = AP;
double Rake_sMastery = Mastery;
double Rake_sMult = Multiplier;
return (((99 + (Rake_sAP*0.3))*Rake_sMastery)*Rake_sMult);
}
}
public static double Rip_sDamage
{
get
{
double Rip_sAP = AP;
double Rip_sMastery = Mastery;
double Rip_sMult = Multiplier;
return (((113*Rip_sMastery) + 320*5*Rip_sMastery + 0.0484*5*Rip_sAP*Rip_sMastery)*Rip_sMult);
}
}
private void SnapShotStats()
{
var DoCSID = buff.dream_of_cenarius_damage.up;
AP = StyxWoW.Me.AttackPower;
using (StyxWoW.Memory.AcquireFrame())
{
Multiplier = Lua.GetReturnVal<double>("return UnitDamage(\"player\");", 6);
Mastery = (1 + (Lua.GetReturnVal<double>("return GetMasteryEffect()", 0)/100));
}
if (DoCSID)
Multiplier = Multiplier*1.3;
}
I know I have said this before in the past, but it seemed to got overlooked, but this profile is not using FoN charges correctly, it seems to be dumping them randomly with no trinket procs. Basically, outside of trinket procs they should NEVER be dumped, only reason to use one without a proc is if you get capped at 3 because of bad trinket RNG, and even then you only use 1 so they aren't wasted.
If you have Rune of Reorigination, you want to dump ALL charges with sub 2 seconds left in the buff(ideally it is <1 second, but this tends to have the last one used without the RoRo buff, resulting in a weak treant rip, so 2 seconds solves this problem. Also, the reason for waiting to dump them until the buff is about to run out is the treant's rake is a snapshot buff which IS affected by the massive mastery buff from RoRo proc, while their melee attacks ARE NOT snapshot, they are real time, so you want them to be attacking the boss AFTER the proc expires so you regain all of your haste and crit.
With all other +Agility proc trinkets, ALL charges should be dumped once they proc, ESPECIALLY if RoRo is procced and above the >2 second threshold.
I just turn off taunt and raid.![]()
Hey Cukie:
If changed roro from <1 to <2 now.
Handling FoN is a little hard to understand for me:
What would we do if we have RoRo and Ted equipped?
Currently we use FoN if one the the following criterias matches:
- Ted procs
- RoRo <2
- 2 Trinkets active (only if we dont use roro)
- 1 trinket active and about to expire
A little bit hard to make decent code supporting all trinkets... :/
well for me it seems the routine dont refresh the bleeds on the procs. Is there a something i should change on settings to test? my rig is kind of old so tps are set to lower values. Can this affect the calculations and the reapplying of the bleeds? Chosing between tyrael or lazyraider can have different results on performance and/or efectiveness?
Thanks
NOTE it is also trying to cast Healing touch when tanking also. all are set to "0%" not sure why this I happening
I mean Druid flag carrier in RBG
That would be perfect if it didn't use all charges with no trinkets active, it should only use 1 if you cap at 3 charges before a trinket procs, saving the other 2 for trinkets.
On a side note, if we have target and movement enabled, can we have the CR attack someone that is trying to gank you? Currently it just stays on the mob getting wtfpwnd by someone. I am gearing up a new druid atm, and keep getting ganked on the timeless isle by people farming bloody coins, and the CR refuses to attack them.
You must have incredible lag for that to happen, I have never seen that happen myself while using this. And I usually have 26/26 MSNOTE it is also trying to cast Healing touch when tanking also. all are set to "0%" not sure why this I happening