[BETA] PQRotation - an automated ability priority queue. menu

User Tag List

Page 510 of 731 FirstFirst ... 10410460506507508509510511512513514560610 ... LastLast
Results 7,636 to 7,650 of 10955
  1. #7636
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @fluxflux: It casts nothing? It's not coded to cast anything at all. That ability was created simply to automatically select targets closes in range to you out from that list, nothing more. Use it i conjunction with an regular rotation and it should cast something.

    [BETA] PQRotation - an automated ability priority queue.
  2. #7637
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes the code iss in my rotation i createt a seperate abbility and put the code inside then i take the other abilitys and set inside the rotation

  3. #7638
    thrylas's Avatar Master Sergeant
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys which rotation is the best for combat rogue in DS10? im using xmCombat from bubba's svn right now and was just wondering if there was a better one available, mabey with smart logic like valma's warlock profiles.

    Also looking for a Holy priest rotation if theres a newer one, ive been using the same one pretty much since pqr was released - dont get me wrong the profiles i use right now are excelent but im looking for some with logic - exspecially for ultrax ect so i can tab out and be even lazier :P.

  4. #7639
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Should really only take about 5 minutes to fix KMDs stuff.

    Create 2 functions (Put this at the top of the rotation):
    Ability: Initialize
    Spell ID: 0
    Code:
    if kmdInit == nil then
    	kmdInit = true
    	function PQ_SwitchToHawk()
    		if UnitBuffID("player", 13165) == nil then
    			CastSpellByID(13165, "player")
    		end
    	end
    	
    	function PQ_SwitchToFox()
    		local FoxBuff = UnitBuffID("player", 82661)
    		if PQR_IsMoving(1) == true and FoxBuff == nil and UnitExists("target") then
    			CastSpellByID(82661, "player")
    		end
    	end
    end
    Then in all of the abilities you want to cast Hawk for, change the code from:
    Code:
    return true
    to:
    Code:
    PQ_SwitchToHawk() return true
    Then for Steady/Cobra Shot, change the code to:
    Code:
    PQ_SwitchToFox() return true
    I really hate you now Xelper, Bu_Bu and I have been working on this for a day or two and then you make this really simple piece of code. I'm going to have to re-write my hunter rotation again!
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  5. #7640
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I really hate you now Xelper, Bu_Bu and I have been working on this for a day or two and then you make this really simple piece of code. I'm going to have to re-write my hunter rotation again!
    Lol he posted that a long time ago you wanted to add in another step so I didn't bring it up haha

    Sent from my phone.
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  6. #7641
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Lol he posted that a long time ago you wanted to add in another step so I didn't bring it up haha

    Sent from my phone.
    Kind of hard to wade through all the pages and pages in this thread to find something relevant. Anyway this gives me an idea to merge the range check into a function too. I'm all for a smaller profile where possible.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  7. #7642
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey xelper for your ret pally profile, add a check if out of rangeto art of war and art of war priority over judge unless 1 hp, also does not cast if enemy is in front if thats possible, should make it where it can't lockup

  8. #7643
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thrylas View Post
    Hey guys which rotation is the best for combat rogue in DS10? im using xmCombat from bubba's svn right now and was just wondering if there was a better one available, mabey with smart logic like valma's warlock profiles.

    Also looking for a Holy priest rotation if theres a newer one, ive been using the same one pretty much since pqr was released - dont get me wrong the profiles i use right now are excelent but im looking for some with logic - exspecially for ultrax ect so i can tab out and be even lazier :P.
    That profile has a lot of room for improvement in the dps area.

    This is one of the better ones I have seen: Rep him

    http://www.ownedcore.com/forums/worl...ml#post2211098 ([BETA] PQRotation - an automated ability priority queue.)

  9. #7644
    thrylas's Avatar Master Sergeant
    Reputation
    3
    Join Date
    Feb 2011
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    That profile has a lot of room for improvement in the dps area.

    This is one of the better ones I have seen: Rep him

    http://www.ownedcore.com/forums/worl...ml#post2211098 ([BETA] PQRotation - an automated ability priority queue.)
    TY +Rep for both of you - will test his profile out against the current one for dps output and then try it in ds10 tonight .

  10. #7645
    xNEC's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm looking for an unholy DK PVP rotation.
    Right now I am using the rotation posted a few months ago but wondering if there's any new and fully updated version for unholy DK in PVP.

    In addition I'm wondering what to do myself and how I know, what my rotation is doing and what i have to do myself.


    Greetings
    NeC

    /Edit
    This is what I am using:

    <?xml version="1.0" encoding="utf-8" ?><DEATHKNIGHT><Ability><Name>Rune Strike</Name><Default>false</Default><SpellID>56815</SpellID><Actions>/startattack</Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Obliterate</Name><Default>false</Default><SpellID>49020</SpellID><Actions>/startattack|/use 10</Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Howling Blast</Name><Default>false</Default><SpellID>49184</SpellID><Actions>/startattack</Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Plague Strike</Name><Default>false</Default><SpellID>45462</SpellID><Actions></Actions><Lua>local dbBloodPlague, _, _, _, _, _, BloodPlagueExpire = UnitDebuffID(&amp;quot;target&amp;quot;,59879, &amp;quot;player&amp;quot

    if dbBloodPlague ~= nil then
    --cast if debuff has &amp;lt; 5 sec left
    BloodPlagueExpire =(BloodPlagueExpire - GetTime())
    if BloodPlagueExpire &amp;lt; 5 then
    return true
    end
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Blood Strike</Name><Default>false</Default><SpellID>45902</SpellID><Actions></Actions><Lua>
    return true
    </Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Frost Strike</Name><Default>false</Default><SpellID>49143</SpellID><Actions></Actions><Lua>if UnitPower(&amp;quot;player&amp;quot &amp;gt; 60 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Coil</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>
    return true
    </Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Blood Boil</Name><Default>false</Default><SpellID>48721</SpellID><Actions></Actions><Lua>
    return true
    </Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Outbreak</Name><Default>false</Default><SpellID>77575</SpellID><Actions></Actions><Lua>local dbBloodPlague, _, _, _, _, _, BloodPlagueExpire = UnitDebuffID(&amp;quot;target&amp;quot;,59879, &amp;quot;player&amp;quot

    if dbBloodPlague ~= nil then
    BloodPlagueExpire =(BloodPlagueExpire - GetTime())
    if BloodPlagueExpire &amp;lt; 4 then
    return true
    end
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Obliterate(Proc)</Name><Default>false</Default><SpellID>49020</SpellID><Actions>/startattack|/use 10</Actions><Lua>local KMProc = UnitBuffID(&amp;quot;player&amp;quot;,5112

    if KMProc ~= nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Strike</Name><Default>false</Default><SpellID>49998</SpellID><Actions></Actions><Lua>local HP = UnitHealth(&amp;quot;player&amp;quot / UnitHealthMax(&amp;quot;player&amp;quot * 100

    if HP &amp;lt; 25 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Horn of Winter</Name><Default>false</Default><SpellID>57330</SpellID><Actions></Actions><Lua>local HornofWinter, _, _, _, _, _, hwexpire = UnitDebuffID(&amp;quot;target&amp;quot;,57330, &amp;quot;player&amp;quot

    if HornofWinter ~= nill then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Mind Freeze</Name><Default>false</Default><SpellID>53550</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Festering Strike</Name><Default>false</Default><SpellID>85948</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Pestilence</Name><Default>false</Default><SpellID>50842</SpellID><Actions></Actions><Lua>local BloodPlague = UnitDebuffID(&amp;quot;target&amp;quot;,59879, &amp;quot;player&amp;quot
    local CD = GetSpellCooldown(50842)

    if BloodPlague ~= nil then
    if CD ~= nil then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Howling Blast (proc)</Name><Default>false</Default><SpellID>49184</SpellID><Actions>/startattack</Actions><Lua>local FreezingFog = UnitBuffID(&amp;quot;player&amp;quot;, 59052)
    if FreezingFog ~= nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Horn of Winter(on)</Name><Default>false</Default><SpellID>57330</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Death Coil(rp-cap)</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>if UnitPower(&amp;quot;player&amp;quot &amp;gt;= 70 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Frost Strike(RP for Brez)</Name><Default>false</Default><SpellID>49143</SpellID><Actions></Actions><Lua>if UnitPower(&amp;quot;player&amp;quot &amp;gt; 85 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Pillar of Frost</Name><Default>false</Default><SpellID>51271</SpellID><Actions>/startattack</Actions><Lua>if UnitHealth(&amp;quot;target&amp;quot &amp;gt;= 300000 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Blood Tap</Name><Default>false</Default><SpellID>45529</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Raise Dead</Name><Default>false</Default><SpellID>46584</SpellID><Actions></Actions><Lua>local UnholySTR = UnitBuffID(&amp;quot;player&amp;quot;, 53365)
    local PillarOfFrost = UnitBuffID(&amp;quot;player&amp;quot;,51271)

    if UnitLevel(&amp;quot;target&amp;quot &amp;gt;= 87 or UnitLevel(&amp;quot;target&amp;quot == -1 then
    if UnitHealth(&amp;quot;target&amp;quot &amp;gt; 300000 then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Apparatus of Khaz&amp;apos;goroth</Name><Default>false</Default><SpellID>0</SpellID><Actions>/use 14</Actions><Lua>local buff,_,_,TPCount = UnitAura(&amp;quot;player&amp;quot;,&amp;quot;Titanic Power&amp;quot
    local CD = GetItemCooldown(&amp;quot;68972&amp;quot

    if buff ~= nil then
    if CD ~= true and TPCount == 5 and UnitHealth(&amp;quot;target&amp;quot &amp;gt;= 300000 then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Health Stone</Name><Default>false</Default><SpellID>5512</SpellID><Actions></Actions><Lua>local myhealth = 100 * UnitHealth(&amp;quot;player&amp;quot / UnitHealthMax(&amp;quot;player&amp;quot
    if myhealth &amp;lt;= 20 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Raise Dead(Pillar)</Name><Default>false</Default><SpellID>46584</SpellID><Actions></Actions><Lua>local UnholySTR = UnitBuffID(&amp;quot;player&amp;quot;, 53365)
    local PillarOfFrost = UnitBuffID(&amp;quot;player&amp;quot;,51271)

    if UnitLevel(&amp;quot;target&amp;quot &amp;gt;= 87 or UnitLevel(&amp;quot;target&amp;quot == -1 then
    if UnitHealth(&amp;quot;target&amp;quot &amp;gt; 300000 then
    if UnholySTR ~= nil and PillarOfFrost ~= nil then
    return true
    end
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Frost Strike(Proc)</Name><Default>false</Default><SpellID>49143</SpellID><Actions></Actions><Lua>local KMProc = UnitBuffID(&amp;quot;player&amp;quot;,5112

    if KMProc ~= nil then
    if UnitPower(&amp;quot;player&amp;quot &amp;gt; 60 then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Blood Tap(2 Rune)</Name><Default>false</Default><SpellID>45529</SpellID><Actions></Actions><Lua>local _,_,R1 = GetRuneCooldown(1)
    local _,_,R2 = GetRuneCooldown(2)


    if R1 == false or R2 == false then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Howling Blast (Lust)</Name><Default>false</Default><SpellID>49184</SpellID><Actions>/startattack</Actions><Lua>local _,_,R1 = GetRuneCooldown(1)
    local _,_,R2 = GetRuneCooldown(2)
    local _,_,R3 = GetRuneCooldown(3)
    local _,_,R4 = GetRuneCooldown(4)
    local heroism = UnitBuffID(&amp;quot;player&amp;quot;, 32182)
    local lust = UnitBuffID(&amp;quot;player&amp;quot;, 2825)
    local warp = UnitBuffID(&amp;quot;player&amp;quot;, 80353)
    local hysteria = UnitBuffID(&amp;quot;player&amp;quot;, 90355)

    if heroism ~= nil or lust ~= nil or warp ~= nil or hysteria ~= nil then
    if R1 == false and R2 == false and R3 == false and R4 == false then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Obliterate(Death Rune)</Name><Default>false</Default><SpellID>49020</SpellID><Actions>/startattack|/use 10</Actions><Lua>local _,_,R1 = GetRuneCooldown(1)
    local _,_,R2 = GetRuneCooldown(2)

    if R1 == true and R2 == true then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Obliterate(Fr&amp;Uh rune)</Name><Default>false</Default><SpellID>49020</SpellID><Actions>/startattack|/use 10</Actions><Lua>local _,_,R3 = GetRuneCooldown(3)
    local _,_,R4 = GetRuneCooldown(4)
    local _,_,R5 = GetRuneCooldown(5)
    local _,_,R6 = GetRuneCooldown(6)

    if R3 == true and R4 == true and R5 == true and R6 == true then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Frost Strike(RP cap)</Name><Default>false</Default><SpellID>49143</SpellID><Actions></Actions><Lua>local rp = 31

    if (UnitPowerMax(&amp;quot;player&amp;quot - UnitPower(&amp;quot;player&amp;quot) &amp;lt; rp then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Howling Blast(Fever)</Name><Default>false</Default><SpellID>49184</SpellID><Actions>/startattack</Actions><Lua>local dbFrostFever, _, _, _, _, _, dbexpire = UnitDebuffID(&amp;quot;target&amp;quot;,55095, &amp;quot;player&amp;quot

    if dbFrostFever ~= nil then
    dbexpire =(dbexpire - GetTime())
    if dbexpire &amp;lt; 4 then
    return true
    end
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Essence of the Eternal Flame</Name><Default>false</Default><SpellID>0</SpellID><Actions>/use 13</Actions><Lua>local CD = GetItemCooldown(&amp;quot;69002&amp;quot

    if CD ~= nil and UnitHealth(&amp;quot;target&amp;quot &amp;gt;= 300000 then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Chains of Ice</Name><Default>false</Default><SpellID>45524</SpellID><Actions></Actions><Lua>if IsShiftKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Grip</Name><Default>false</Default><SpellID>49576</SpellID><Actions></Actions><Lua>if IsControlKeyDown() then
    return true
    end</Lua><RecastDelay>100</RecastDelay><Target>Target</Target></Ability><Ability><Name>Icy Touch</Name><Default>false</Default><SpellID>45477</SpellID><Actions>/startattack</Actions><Lua>local dbFrostFever, _, _, _, _, _, dbexpire = UnitDebuffID(&amp;quot;target&amp;quot;,55095, &amp;quot;player&amp;quot

    if dbFrostFever ~= nil then
    dbexpire =(dbexpire - GetTime())
    if dbexpire &amp;lt; 4 then
    return true
    end
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Scourge Strike</Name><Default>false</Default><SpellID>55090</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Coil (Proc)</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>local SDProc = UnitBuffID(&amp;quot;player&amp;quot;,49530)

    if SDProc ~= nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death And Decay</Name><Default>false</Default><SpellID>43265</SpellID><Actions></Actions><Lua>if IsShiftKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Mouseover</Target></Ability><Ability><Name>Dark Transformation</Name><Default>false</Default><SpellID>63560</SpellID><Actions></Actions><Lua>local ShadowInfusion = UnitBuffID(&amp;quot;pet&amp;quot;, 91342)

    if ShadowInfusion ~= nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Pet</Target></Ability><Ability><Name>Unholy Frenzy</Name><Default>false</Default><SpellID>49016</SpellID><Actions></Actions><Lua>local levelCheck = UnitLevel(&amp;quot;target&amp;quot
    if levelCheck ~= -1 then
    --boss level returns as -1
    return false
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Gargoyle</Name><Default>false</Default><SpellID>49206</SpellID><Actions></Actions><Lua>local levelCheck = UnitLevel(&amp;quot;target&amp;quot
    if levelCheck ~= -1 then
    --boss level returns as -1
    return false
    else
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Necrotic Strike</Name><Default>false</Default><SpellID>73975</SpellID><Actions></Actions><Lua>local NecroticStrike = UnitDebuffID(&amp;quot;target&amp;quot;, 73975)

    If NecroticStrike ~= nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Empower Rune Weapon</Name><Default>false</Default><SpellID>47568</SpellID><Actions></Actions><Lua>local _,_,R1 = GetRuneCooldown(1)
    local _,_,R2 = GetRuneCooldown(2)
    local _,_,R3 = GetRuneCooldown(3)
    local _,_,R4 = GetRuneCooldown(4)
    local _,_,R5 = GetRuneCooldown(5)
    local _,_,R6 = GetRuneCooldown(6)
    local levelCheck = UnitLevel(&amp;quot;target&amp;quot

    if levelCheck ~= -1 then
    --boss level returns as -1
    return false
    else
    if R1 == false and R2 == false and R3 == false and R4 == false and R5 == false and R6 == false then
    return true
    end
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Gargoyle PVP</Name><Default>false</Default><SpellID>49206</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Unholy Frenzy PVP</Name><Default>false</Default><SpellID>49016</SpellID><Actions></Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Player</Target></Ability><Ability><Name>Chains of Ice Unholy</Name><Default>false</Default><SpellID>45524</SpellID><Actions></Actions><Lua>if IsAltKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Raise Dead Unholy</Name><Default>false</Default><SpellID>46584</SpellID><Actions></Actions><Lua>if UnitExists(&amp;quot;pet&amp;quot == nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Outbreak Test</Name><Default>false</Default><SpellID>77575</SpellID><Actions></Actions><Lua>if IsAltKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Unholy Presence</Name><Default>false</Default><SpellID>58265</SpellID><Actions></Actions><Lua>local UnholyPresence = UnitBuffID(&amp;quot;player&amp;quot;,58265)

    if UnholyPresence == nil then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Coil Moving</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>if PQR_IsMoving(1) then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Coil(rp-cap-test)</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>if UnitPower(&amp;quot;player&amp;quot &amp;gt;= 95 then
    rpcap = 1
    else

    if UnitPower(&amp;quot;player&amp;quot &amp;lt;= 33 then
    rpcap = nil
    end

    if rpcap then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Empower Rune Weapon PVP</Name><Default>false</Default><SpellID>47568</SpellID><Actions></Actions><Lua>local _,_,R1 = GetRuneCooldown(1)
    local _,_,R2 = GetRuneCooldown(2)
    local _,_,R3 = GetRuneCooldown(3)
    local _,_,R4 = GetRuneCooldown(4)
    local _,_,R5 = GetRuneCooldown(5)
    local _,_,R6 = GetRuneCooldown(6)

    if R1 == false and R2 == false and R3 == false and R4 == false and R5 == false and R6 == false then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Pillar of Frost PVP</Name><Default>false</Default><SpellID>51271</SpellID><Actions>/startattack</Actions><Lua>return true</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Lichborne PVP (Alt)</Name><Default>false</Default><SpellID>49039</SpellID><Actions></Actions><Lua>if IsAltKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability><Ability><Name>Death Coil(pet-test)</Name><Default>false</Default><SpellID>47541</SpellID><Actions></Actions><Lua>local DarkTransformation = UnitBuffID(&amp;quot;pet&amp;quot;, 63560)

    if DarkTransformation == nil then
    return true
    end

    if IsAltKeyDown() then
    return true
    end</Lua><RecastDelay>0</RecastDelay><Target>Target</Target></Ability></DEATHKNIGHT>
    <?xml version="1.0" encoding="utf-8" ?><DEATHKNIGHT><Rotation><RotationName>Frost 4.2 Dps</RotationName><RotationDefault>false</RotationDefault><RotationList>Chains of Ice|Death Grip|Blood Tap(2 Rune)|Horn of Winter|Pillar of Frost|Raise Dead|Obliterate(Proc)|Howling Blast (proc)|Obliterate(Fr&amp;Uh rune)|Obliterate(Death Rune)|Outbreak|Plague Strike|Obliterate|Frost Strike(Proc)|Frost Strike|Howling Blast|Empower Rune Weapon|Blood Tap|Health Stone|Frost Strike(RP cap)</RotationList></Rotation><Rotation><RotationName>Frost AOE</RotationName><RotationDefault>false</RotationDefault><RotationList>Blood Tap(2 Rune)|Pillar of Frost|Raise Dead|Howling Blast|Howling Blast (proc)|Howling Blast(Fever)|Blood Tap|Frost Strike|Frost Strike(Proc)|Blood Boil|Apparatus of Khaz&amp;apos;goroth|Essence of the Eternal Flame|Horn of Winter|Health Stone</RotationList></Rotation><Rotation><RotationName>Frost +(Brez)+</RotationName><RotationDefault>false</RotationDefault><RotationList>Blood Tap(2 Rune)|Pillar of Frost|Raise Dead|Obliterate(Proc)|Howling Blast (proc)|Obliterate(Fr&amp;Uh rune)|Obliterate(Death Rune)|Obliterate|Frost Strike(RP for Brez)|Apparatus of Khaz&amp;apos;goroth|Essence of the Eternal Flame|Plague Strike|Howling Blast|Blood Tap|Horn of Winter|Health Stone</RotationList></Rotation><Rotation><RotationName>Test</RotationName><RotationDefault>false</RotationDefault><RotationList>Pestilence|Horn of Winter|Rune Strike</RotationList></Rotation><Rotation><RotationName>Unholy 4.2 DPS</RotationName><RotationDefault>false</RotationDefault><RotationList>Raise Dead Unholy|Dark Transformation|Death And Decay|Death Coil (Proc)|Unholy Frenzy|Gargoyle|Death Coil(pet-test)|Outbreak|Icy Touch|Plague Strike|Scourge Strike|Festering Strike|Empower Rune Weapon|Blood Tap|Health Stone|Horn of Winter(on)</RotationList></Rotation><Rotation><RotationName>Unholy AOE</RotationName><RotationDefault>false</RotationDefault><RotationList>Raise Dead Unholy|Death And Decay|Dark Transformation|Death Coil (Proc)|Death Coil(pet-test)|Outbreak|Icy Touch|Plague Strike|Pestilence|Scourge Strike|Festering Strike|Blood Boil|Horn of Winter</RotationList></Rotation><Rotation><RotationName>Unholy PVP (Test)</RotationName><RotationDefault>false</RotationDefault><RotationList>Chains of Ice|Death Grip|Gargoyle PVP|Unholy Frenzy PVP|Raise Dead Unholy|Dark Transformation|Death Coil (Proc)|Outbreak|Icy Touch|Plague Strike|Scourge Strike|Death Coil(pet-test)|Festering Strike|Empower Rune Weapon PVP|Blood Tap|Health Stone</RotationList></Rotation><Rotation><RotationName>Frost PVP (Test)</RotationName><RotationDefault>false</RotationDefault><RotationList>Chains of Ice|Death Grip|Lichborne PVP (Alt)|Pillar of Frost PVP|Blood Tap(2 Rune)|Horn of Winter|Howling Blast (proc)|Obliterate(Proc)|Obliterate(Fr&amp;Uh rune)|Obliterate(Death Rune)|Plague Strike|Obliterate|Frost Strike(Proc)|Frost Strike|Howling Blast|Frost Strike(RP cap)|Health Stone|Empower Rune Weapon PVP|Blood Tap</RotationList></Rotation></DEATHKNIGHT>
    Last edited by xNEC; 03-15-2012 at 06:00 PM.

  11. #7646
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thrylas View Post
    TY +Rep for both of you - will test his profile out against the current one for dps output and then try it in ds10 tonight .
    ty

    Around 400 DLs and 21 Rep I can understand Valma ^^

  12. #7647
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Hey xelper for your ret pally profile, add a check if out of rangeto art of war and art of war priority over judge unless 1 hp, also does not cast if enemy is in front if thats possible, should make it where it can't lockup
    The buff on Art of War lasts so long that I would never use it at range, but use it fill my rotation once I did get there. However I would agree that a range check for perhaps Crusader Strike should be added to "Judgement (No JOTP Buff)"

    Code:
    local jotpBuff = PQR_UnitBuffID("player", 54151)
    local inRange = IsSpellInRange(GetSpellInfo(35395), "target")
    
    if jotpBuff == nil or inRange ~= 1 then
    	return true
    end
    Something like that, I'll let the code junkies handle that.

  13. #7648
    phantom325's Avatar Turtle Nation
    Reputation
    1033
    Join Date
    Apr 2011
    Posts
    2,628
    Thanks G/R
    81/162
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When I download the new PQR, there are no preconfigured profiles whatsoever. Is this normal, and if so, where can I download them?

  14. #7649
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by phantom325 View Post
    When I download the new PQR, there are no preconfigured profiles whatsoever. Is this normal, and if so, where can I download them?
    This is normal. Just copy the profiles from your previous install of PQR to their respective Class Folders under Profiles.

  15. #7650
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by phantom325 View Post
    When I download the new PQR, there are no preconfigured profiles whatsoever. Is this normal, and if so, where can I download them?
    Aaaaaaaaaand now I feel like a cock. At least I did a good deed for the day and upgrade mentally to cata lol.
    Last edited by expunge; 03-15-2012 at 07:18 PM.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 03:16 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search