double post
double post
Last edited by mcwhat; 10-29-2012 at 12:23 AM. Reason: double post
Gonna test and see whats wrong with my profile in a few hours ( still attending class atm)
So as i understand it correctly it isn't using wrath/consecration/ES right?
What do i need to understand as UI lockups?
What you can always try is to use my own talents and glyphs ( My profile worked flawlessly a few days ago ), some glyphs like mass excorcism and concecration ain't supported.
http://www.wowhead.com/talent#lxn^|LNM
Hope i can fix this for you guys in a few hours
Greetz nudex
edit: Was wrong talent and glyphs, should be a correct link now
Last edited by nudex; 10-29-2012 at 05:11 AM.
PQR : Nudex Paladin Rotations
https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar
One of the things I see when looking at your abilities list is this
Looking through the PQR wiki is looks like PQR has a custom function that does this already PQR_SpellAvailable() so the following should do the same thing without needing the delays list and local variables.Code:local CD31935 = GetSpellCooldown(31935) if CD31935 == 0 then return true end
I admit that I'm new to PQR, so I may be missing something though.Code:if PQR_SpellAvailable(31935) then return true end
Could workgonna do a major overhaul of the profile when i have some extra free time.
BTW good news, Found whats wrong with the profile why it's not using concecration/holy wrath and all that.
Working on fixing it now and adding divine purpose support.
While you are waiting the profile the current version WORKS 100% IF U USE FOLLOWING TALENTS AND GLYPHS
Mists of Pandaria - Talent Calculator - World of Warcraft
greetz Nudex
PQR : Nudex Paladin Rotations
https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar
Awesome. Thanks for all you do. I was looking around at some of the other profiles to see how they did range checks and this looks like it works and is a little bit cleaner.
Here's the original code for comparison:Code:--if CS is out of range... if IsSpellInRange(GetSpellInfo(35395), "target") == 0 and PQR_SpellAvailable(20271) then return true end
Code:local crusaderStrike = GetSpellInfo(35395) local CD20271 = GetSpellCooldown(20271) --if CS is out of range... if IsSpellInRange(crusaderStrike, "target") == 0 and CD20271 == 0 then return true end
yeah also noticed that 2was just lazy to change all that.
I'll be coding the whole evening i guess cleaning all the code.
Thanks for the Help Iceperson
btw little update on fixing the profile: - atm it will cast everything except for ES, The problem with it was that I coppied it from Averykey's profile and it did a check if inquisition was up. Stupid me!
greetz nudex
PQR : Nudex Paladin Rotations
https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar
Thanks nudex. Right now im fine with me doing the others, I have it set up pretty decently and even did 71k on Will with our kill. I missed the strike a couple times while trying to survive instead of pressing the button or it would have been much more but an amazing profile. I cant wait to see the update. Im also not sure why im getting problems now though. I had it working, logged off, came back on a couple hours later and it wasnt working when i edited my post twice. But it sounds like you found the problem and thats all that really matters.
Last edited by Deathsmind; 10-29-2012 at 12:02 PM.
Greetings fellow PQR users
Just wanted to tell you the new NudeX Paladin Prot Rotation v1.05 is out now
http://dl.dropbox.com/u/83665029/Nud...20Rotation.rar
Or update in PQR itself!
Whats new?
- Fixed a bug, Executioner's Sentence/ Holy Wrath/Consecration weren't working
- All lvl 90 talents should work now as intended
- Divine Purpose is supported now
- And many more ....
What doesn't work?
- Mass exorcism and the movable consecration
As always special thanks to Averykey due to the fact that alot of the code is based on his mighty fine work
Having problems, found a bug or have a crazy cool suggestion --> Go to my personal thread in the Bot Maps and Profile Subforum
Greetz Nudex
PQR : Nudex Paladin Rotations
https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar
Thanks will be trying it out in LFR tomorrow and heroic MV friday. Hopefully these work, So just wondering what does divine purpose do now? Once it realizes the buff will use shield only? or will it think about what it can use like before where it assists that if your low on health heal you?
Here are a couple of options to handle both glyphed and unglyphed consecrations.
This one will only cast when left shift is held down.
This one will cast continuously on cooldown.Code:if IsLeftShiftKeyDown() and PQR_SpellAvailable(26573) then CastSpellByName(GetSpellInfo(26573)) if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end return true end
Either way it will be cast wherever the mouse is hovering when it's glyphed.Code:if PQR_SpellAvailable(26573) then CastSpellByName(GetSpellInfo(26573)) if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end return true end
Its working great for me now. No hiccups or anything. Topping DPS charts as prot, which isnt too hard but still nice beating out prot warrior which is suppose to be higher dps from what i heard. Quick question though. Would you be able to add in using lock cookies and potions?
Looking for somebody with a low-mid level prot paladin to test if the new "beta" version also works for leveling
greetz nudex
PQR : Nudex Paladin Rotations
https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar
You're in luckI just got my pal to 42 as prot and was looking for a profile to test it with.
Will post results after a couple dungeons.
edit.
Well.. that was insane lol 1k+ at 44 on bosses topping deeps hahaha
No faults with it so far nudex.
Sweet ass work man, +rep! I only wish Averys gets updated asap to work with any lvl :L need me some ret OS.
Last edited by LtButterman; 11-04-2012 at 03:02 AM.
I'll test this on my paladin I've heard good things so far
edit- played around on my pally tank and you need to make sure you have consecration unglyphed otherwise you will get UI lockups where no spells will work and you will have to press ESC key to fix it. Otherwise looks to be working pretty good. It tries to spam conc a little earlier by about 0.5 seconds but thats okay![]()
Last edited by Saltychip; 11-07-2012 at 09:43 PM.