@sheep I agree with u on pretty much every point. When I'm not specifically testing something in my profile for release, most of the time I'm manually playing my characters cuz I think its fun XD
However it is fun to see what all we can code and yes that does cause issues, but that's normally because you try to change an existing code to work around either new code or changes. And if they new code/change works that doesn't mean it won't break something elsebut that's the joy of it for me at least XD however it also leads to major rewrites like the one I am doing right now. To many additions to keep track of in the code to play nice with everything
Sent from my Droid using Tapatalk
hey buba sent you the DK package. I been using mostly leetjerks masterfrost profiles, they are quick and act almost perfectly just the runic mastery thing has chaped mine and leets ass imo
why when i run it i cant select any process?
at the drop box it says "Edit Mode (No Bot Functionality)"
How would i make Festering Strike cast if diseases have less than 7 seconds before they expire?
I'll try and give this a whirl and hope it comes out working :P
Info:
Name Festering Strike
SpellID: 85948
Delay: 0
Give that a whirl and tell me how it works out for you. I don't have a DK to test it out on, so it might just blow up in your/my faceCode:local bloodp, _, _, _, _, _, bptimer = UnitDebuffID("target", 59879, "PLAYER") local frostf, _, _, _, _, _, fftimer = UnitDebuffID("target", 59921, "PLAYER") if bptimer < 7 and fftimer > 1 then return true else endWhat it does is check the time left on Blood Plague to make sure its less than 7 seconds, but also checks the timer on Frost Fever, to make sure its more than 1 second, so Festering Strike will never cast unless both diseases are on the target (or the unfortunate circumstance that Blood Plague falls off right when it checks and it sees Frost Fever is at 1 second, but thats a slim chance). If they are, it will return true and cast the given SpellID, if either of them are not below 7 seconds or above 1 second, it will end and not cast the spell. So hopefully, both Blood Plague and Frost Fever are cast one after the other and only suffer 1 second difference in duration cause of the GCD.
But be warned, if it works out as intended and everything goes well, it will only cast Festering strike within those params. I don't know anything about the rotation of DK's and all the mambo jumbo, so do what you need to do.
Best of luck
EDIT* But yeah, I don't know how much of a DPS lose you will get going to the above, but it would be some I'm sure.
Last edited by firepong; 02-04-2012 at 02:36 AM.
Damn didnt work, thanks for trying though!
EDIT: got it working using this:
local dbBloodPlague, _, _, _, _, _, BloodPlagueExpire = UnitDebuffID("target",59879, "player")
if dbBloodPlague ~= nil then
BloodPlagueExpire =(BloodPlagueExpire - GetTime())
if BloodPlagueExpire < 7 then
return true
end
else
return true
end
Last edited by DSentinus; 02-04-2012 at 03:11 AM.
what about druid moonkin guyz buba plz make a good rotation for this charecter also thank you
As far as I know, Buba hasn't expressed interest in making Druid profiles, and quite frankly he has a lot on his plate already.
There have been Balance Druid rotations before, but they were generally subpar because people couldn't get PQR to handle the Eclipse bar properly. I don't know if the problem has been solved, but I wouldn't expect a new profile unless you're willing to write one yourself.
If anyone is aware of a proper Balance profile, please correct me. My knowledge only goes up to the end of November, unfortunately.
Do you think it would be possible to get te offsets for 4.0.6a as moltenwow has just launched a new cata server and i would love to use this program with it![]()