Some remarks:inferiorlol wrote:I did something along that lines with your WA bleed code as base.
I just added a new variable:
to the Feral Stat Logic aura, and then I made a new weakaura to snapshot this to another variable at a button press (I chose Aquatic Form since I figure I would never accidentally use that in a raid).Code: Select all
WA_stats_mult = AP*Mastery*DamageMult*CritEffMult
I then make a new aura to return the ratio between these two variables. As of right now you need to have a target with the correct level you want to snapshot against since your code uses that to calculate the CrittEffMult. Very basic but it works pretty well for me.
http://www.youtube.com/watch?v=JZLNVA3l ... e=youtu.be
If you want the value to be saved between sessions, you can hijack the WeakAuras SavedVariables by naming your variable as an element of the WeakAurasSaved table, something like WeakAurasSaved["stats_mult"].
If you don't want to trigger on a spellcast, you could just make a macro to execute the relevant code (with /run) -- something like
/run WA_calcStats_feral(); WeakAurasSaved["stats_mult"] = WA_stats_mult