@Sheuron Your CB rogue profile is absolutely amazing but since the build when you added the new tricks code, and disc pvp profiles. It's been doing some wonky stuff at least on the training dummies, for example it is hording energy waiting for 70 to 80 to evis and to about 60 to SS and on any dummy besides the boss one it just does 1 SS then evis. Not sure if this issue is unique to me, reverting back until you have a fix or i know whats up. (PS waiting in a dungeon queue as we speak to see if the problem persists only for the training dummies.
(Bad grammar is bad if i made a mistake in there somewere.)
EDIT 1: Problem persists in dungeons.
Last edited by travis2861; 12-26-2011 at 06:29 AM.
If you experience this on any profile go to ability editor, you ll see a line like this
UnitDebuffID("target", 94009) -- 94009 is the rend rebuff, the number may vary with other spells
and replace with this
UnitDebuffID("target", 94009,"PLAYER")
That way only check your own spells, not other party members.
is there a way to see if a target priest has got shadowfiend out
Thanks, i ll add this but got some questions:
Whats the timer to break polymorph casting SW Death, should cast asap or wait till 1 second left?
Should offensive spells have any mana limitation? By example, when my mana is under 20% use healing spells only?
Isnt Mana Burn purpose to bring players to 0 mana and avoid them cast anything
About leap of faith i prefer to use it manually, on my interface got it binded to ALT+S, that way will interrupt rotation wihle using leap.
you're right on everything. like only healing when my mana is under 20% mana sounds good, and the cast time on polymorph is 1.3 seconds i think so if it SW: Ds when it is like 0.3 seconds left it would be perfect. you also got to remeber that polymorph wont break if you have any shields on you but the only important ones are: divine aegis, Illuminated Healing and Power Word: Shield. and another thing if its possible :P prioritize dispelling teammates if im over 80%, if they are in like a stun or something
Last edited by botman420; 12-26-2011 at 08:27 AM.
is it possible to use Skills/Items that use these green circle area targetsystem ?
heroic leap, saronite bombs, blast wave
PQR 1.1.1 Released
http://dl.dropbox.com/u/39925787/PQR111.zip
[CHANGE] Updated PQR_IsMoving(x) - it will now work anywhere regardless of a map being present or not. Profile developers can now also change the movement reset time on a global basis. Previously it would take 1 second to be considered not moving after having been previously considered moving. You can now make it reset to not moving after having stopped moving for a shorter or longer amount of time. Add this line to an ability in your rotation:
This will cause the 1 second reset timer to change to 0.3 seconds. Note that this will effect your entire rotation, not just single abilities. This is reset to the 1 second default when changing rotations.Code:PQR_ResetMovementTime = 0.3
[UPDATE] No longer limited to 256 abilities combined between all rotations per class.
[BUGFIX] Fixed manual mode not displaying a message in chat.
[UPDATE] Included many profiles from the last couple weeks, sorry if I missed yours!
Last edited by Xelper; 12-26-2011 at 12:01 PM.
Hi all,
nice work on all the profiles and work that goes into this![]()
i was wondering if it's possible to set lifebloom for the restro druid profile to go on the person with the most HP or focused or can it be set to do it on the most health + person withe defence stance / blood pressance / RD (for pallys) / bear form?
also i want it to use swift mend more almost on CD.
is this possible if so can someone do this for me?
once again thanks for all your hard work on this![]()
Last edited by Xelper; 12-26-2011 at 12:58 PM.
How do I change my hunters mark to not cast if the target has below 200k? I want to stop it from casting on blistering tentacles and on elementium bolts.
is it my profile or sherons?
should be something like
if its my profile just change the code to this:Code:local targethp = UnitHealthMax("target") if targethp <= 200000 then return false end
Code:local mark = UnitDebuffID("target", 1130) local targethp = UnitHealthMax("target") if IsLeftControlKeyDown() or targethp <= 200000 then return false end if mark == nil and targethp >= 200000 then return true end
Last edited by crystal_tech; 12-26-2011 at 01:13 PM.
What Sheuron said... except maybe change UnitHealthMax to UnitHealth instead... so its using the current HP of the target rather than its max HP.
Hi,
im getting a little Timing Problem with the "ApplyPoisons" function in any Rogue Profiles.
I think the right Way is: Profile is testing Player has Poisons running < 3 sec and than apply Poisons
On my Computer it's: Profile is testing Player has Poisons running < 3 sec and than apply Poisons double each
What the hell is going wrong on my Computer ^^
Is it possible to insert a delay between the applying, to let the Profile test if there is now an Poison running ?
Hope you are understanding what i mean, btw my english is very rusty ^^
Sheuron's DK pvp profile is rocking but I have some tweaks I would like to change to it for me personally. Lichborne currently is set to cast <70% I would like to use it as a second Will of the Forsaken. Can someone help me edit the code? I will proivde the current WotF code and the spell id for Lichborne.
Will of the Forsaken:
Lichborne: spell id 49039Code:local debuff = { 10326, 8122, 2094, 5782, 5484, 6358, 5246 } for i,v in ipairs(debuff) do if UnitDebuffID("player",v) then return true end end
Also, I like Sheuron's idea for Dark Simulacram just looking for any use for it as it would be cool to throw into the rotation. I wouldn't mind testing some ideas if you have them.
Thanks Xelper for Lichborne code.
Last edited by Meatglue; 12-26-2011 at 05:19 PM.