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

User Tag List

Page 215 of 731 FirstFirst ... 115165211212213214215216217218219265315715 ... LastLast
Results 3,211 to 3,225 of 10955
  1. #3211
    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 Lofty View Post
    Anyone else getting an error when trying to load the Holy Paladin profile?

    ---------- Post added at 02:36 PM ---------- Previous post was at 01:58 PM ----------

    NVM sorted it. HOLY MANA DRAIN :O
    for my own sanity what was the issue? lol
    ^0^Team Nova's PQR NCC ^0^

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

    [BETA] PQRotation - an automated ability priority queue.
  2. #3212
    Jamsx1's Avatar Corporal
    Reputation
    7
    Join Date
    Oct 2011
    Posts
    27
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edited due to the fact i figured it out =D
    Last edited by Jamsx1; 12-14-2011 at 10:34 PM.

  3. #3213
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just combined Sheuron's Frost profile with Fire to make a pretty nice Fire PvP one. Just not sure how the armor is supposed to work. Right now just using Molten till I figure out what I am supposed to do.

  4. #3214
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Automatic Curse dispeler for arenas and bgs.

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse" then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCurse(member) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) then return true end
    Replace the word "Curse" with "Magic" and voilá, you got Automatic Magic Dispeler.

  5. #3215
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Automatic Curse dispeler for arenas and bgs.

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse" then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCurse(member) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) then return true end
    Replace the word "Curse" with "Magic" and voilá, you got Automatic Magic Dispeler.
    '

    but this will dispell unstable affliction?

  6. #3216
    Jamsx1's Avatar Corporal
    Reputation
    7
    Join Date
    Oct 2011
    Posts
    27
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know I have asked this a week or so ago, problay just gets lost in the endless pages of this post. Is there anyone that can adjust the Onya elemental script from page 80 to use Unleash Elements everytime its off cooldown just before it hits Lava Burst?
    Does someone just have a newer Elemental profile? That one does real good dps but just does not reach the maximum potential.

    Thanks again to everyone who contributes to this project. Also GRB your PRQ-PU is sweet man, that is definitly the way to go to keep profiles up to date, everyone should get onboard with that.

  7. #3217
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackus View Post
    '

    but this will dispell unstable affliction?
    Easy fix, this ll dispel everyting but Unstable Affliction

    Code:
    function CheckMagic(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Magic" then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckMagic(member) then PQR_CustomTarget = member end
      end
    end
    
    if CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true end

  8. #3218
    Lofty's Avatar Banned
    Reputation
    37
    Join Date
    Feb 2008
    Posts
    74
    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
    for my own sanity what was the issue? lol
    Crazy amount of HR spam (Even if a couple of low health targets are not in range).

    And i didn't notice it using the cone type heal (Mind has gone blank on me)

    *EDIT*

    Oh if you ment the error in PQR, i was dumb and tried to save the source from your link by "right click, save link as"
    Last edited by Lofty; 12-15-2011 at 05:09 AM.

  9. #3219
    retoxed's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As Rogue PRQ wont attack the dragons before Ultraxion until they land, And does not attack the fangs and wings of deathwing during madness. Any way to fix this?

  10. #3220
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by retoxed View Post
    As Rogue PRQ wont attack the dragons before Ultraxion until they land, And does not attack the fangs and wings of deathwing during madness. Any way to fix this?
    my profile? or others?

  11. #3221
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    my profile? or others?
    Same thing happens with your Mage profiles including on Gunship will not attack dragons will only attack melee mobs.


    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  12. #3222
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Jamsx1

    To what I understand, and this might have changed in 4.3. Using Unleash Elements while not moving is an actual DPS loss. I've edited Onya profile to if I'm moving use Unleash Elements.

    If you'd like I can upload my edited profile to my SVN when I get home.

  13. #3223
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    Same thing happens with your Mage profiles including on Gunship will not attack dragons will only attack melee mobs.


    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    what? I have a mage profile?

  14. #3224
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    Same thing happens with your Mage profiles including on Gunship will not attack dragons will only attack melee mobs.


    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    Who's fire profile are you using. To what I know sheuron has one and so does GRB. GRB --- offensive spells --- list does not have those mobs listed. While sheuron does...

  15. #3225
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    Who's fire profile are you using. To what I know sheuron has one and so does GRB. GRB --- offensive spells --- list does not have those mobs listed. While sheuron does...
    Yep mine was outdated, need to upload the new files. But use sheuron fire mage profile, for some reason with is profile im doing more dps then on mine.

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 02:08 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