Its a profile for feraldruids to use with PQRotation program m8 ^^ Also Firepong nice to see you try your hands on something else than Druids for a change, looking forward to try it in the future!
Its a profile for feraldruids to use with PQRotation program m8 ^^ Also Firepong nice to see you try your hands on something else than Druids for a change, looking forward to try it in the future!
sorry firepong, i didnt want to critizise your work, cause its great
im just trying to give you information on how to improve your profile from a different point of view (16/16 heroic 25man 512ilvl)
I'll put Faerie Fire as a toggle in my frame (always on by default) for yupu toggle on and off. On other Timr2Die function, as soon as I see how it will work out in my DK profile I will be releasing in the next couple days, I will incorporate it into my feral profile (thanks gabbz for the function). Don't want to incorporate it to find out its not really needed.
But if I do incorporate it, how is is going to need to be used. At what time do you want it to stop using rip? Cause from my tests, with rip being top damage for us, it better be at 15 seconds or less (full duration of a rip pretty much) before it actually becomes a DPS loss.
EDIT* Have to honestly say. This is the least amount to code I have needed for a profile. With the profile not needing direction checks like my feral profile needs, its pretty easy. Haven't got to run the rotation as I've been coding it here at work, but most of the spells are done. Just need to plug the right buff ID's and spellID's into the rotations and it will be time for some testing. Don't know how it will go on my 450 iLVL DK in full PvP gear though
Sent from my Nexus 7 using Tapatalk 2
Last edited by firepong; 02-10-2013 at 04:04 AM.
Ok, just finished my initial coding of my Unholy Rotation. If some of you guys would be willing to help me test it out and let me know what needs to be done or changed, let me know. I will be adding in DnD sometime later as I don't think it is really needed right now as well as adding in some kind of Multi-Target Rotation.
LINK http://firepong.kicks-ass.org/svn/PQ...al_Release.rar
Again, this is an initial release, I'm pretty sure much has to be improved on. I tried to make it follow SumCraft as much as possible, but for right now, I know a few things to need to be changed. I will be adding a boss-level check to mast cooldown's in the next couple releases.
+rep added, will be trying it out when I've gathered more dps pieces (full blood geared atm)
Yeah, without DnD and full 450 PvP gear and crappy trinkets, I was pulling 38k. SimCraft showed 40.5k At the gear I had, so I will have to change something. I don't think DnD is causing it to loose 2k DPS
Ok, I just added in DnD. Right now, it is binded to Left Shift or if it detects Mouseover, it will auto do it itself (taking into account the current Mouseover = Current Target). Instead of re-creating the wheel, I just went ahead and took Bu_ba's DnD. It will do a better job than mine will ever do lol.
EDIT* I'm also using my 463 Archeology Polearm because I dont have any weapon better at the moment lol
Last edited by firepong; 02-10-2013 at 02:01 PM.
Actually Rake is top dmg for Ferals, followed by Rip.
The time to die code would be useful for things such as trash, boss adds with lower health
(xample you dont need to apply rip when theres 500k health left on target( Say that's half its health) with 7 people attacking it - FB would be the obvious choice)
Ok guys. Little problem. For right now, my internet is down, so my SVN is down as well. As soon as Verizon gets off their lazy asses and comes out to my house to look at the hardware and tells me what will happen, I will let you guys know. Sorry for the problem and not being able to download updates. I would tether my desktop to my phone, but ATT already went ape-shit when they noticed I was tethering a while back.
Well, for right now, since I have no internet at all, it wouldn't really matter. From what I can tell from how many people have downloaded my latest DK release as well as my druid (almost 1k different IP addresses between the 2), most of the community that normally use them already have the latest update. From what I can tell, from logs, most people update the svn daily and since the last update I made was yesterday morning, most people should be OK.
I really like the way I have my svn setup right now so that I can track download statistics and all that without having to pay $20+ for a outside svn to do all that.
Don't worry though, my internet will be back up tomorrow and I will have everything going again.
Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
just wanted to ask if it wouldnt be a dps improvement if u would make the profile cast rip before savage roar when both are about to fall off at the same time
i often see that problem, but its easier to cast a 0 combo point savage roar then waiting for 5 combo points for a new rip
This can be done (And i actually edited in my own addition to do it)
If u want to get more uptime on rips, and less 4-5 combo point Savage Roars , do the following.
Be sure to have the Glyph of Savagery learned.
Open the ability editor and select Druid>Firekitteh
Scroll down to the Savage Roar ability in the list and select it (Left click)
You will notice a bunch of code pop into the large white area on the right.
Copy and past this code below into that large area (Essentially overwriting his code)
Click Save in the lower left corner.PHP Code:
--Variables
local HasGlyph = HasGlyph(127540)
local HasSR = select(2,HasSR("Player"))
--Misc
local rip, _, _, _, _, _, riptimer = UnitDebuffID("Target", 1079, "PLAYER")
local CP = GetComboPoints("Player", "Target")
local cat = UnitBuffID("Player",768)
local psBuff = UnitBuffID("Player",69369)
local nsBuff = UnitBuffID("Player",132158)
if not (psBuff and nsBuff) then
if cat then
if not HasGlyph then
if not HasSR and CP > 0 then
CastSpellByName(tostring(GetSpellInfo(52610)))
elseif HasSR and (round(HasSR - GetTime(),2)) < 4 and CP > 3 then
CastSpellByName(tostring(GetSpellInfo(52610)))
elseif HasSR and (round(HasSR - GetTime(),2)) < 2 and CP < 3 then
CastSpellByName(tostring(GetSpellInfo(52610)))
end
elseif HasGlyph then
if not HasSR then
CastSpellByName(tostring(GetSpellInfo(127538)))
elseif HasSR and (round(HasSR - GetTime(),2)) < 3 and riptimer - GetTime() > 8 and CP < 4 then
CastSpellByName(tostring(GetSpellInfo(127538)))
end
end
end
end
Be sure to /reloadui in game after making changes.
This is approximately a 2k dps increase for me.
-GB
Last edited by googlebee; 02-14-2013 at 04:41 PM.