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

User Tag List

Page 597 of 731 FirstFirst ... 97497547593594595596597598599600601647697 ... LastLast
Results 8,941 to 8,955 of 10955
  1. #8941
    ticklets's Avatar Member
    Reputation
    51
    Join Date
    Jun 2009
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maleth View Post
    Hey guys, whats the best Arms Warrior PVE profile around at the moment? The best I can find is Bossqwerty's one. But as he is no longer around or playing WoW, i'm looking to switch to a profile which will be getting updated etc.

    Would be great if the Nova team would do it again, as apparently the only Arms profile being updated is the PVP one from them, which is great. Would love to see a new PVE one from them, or another skilled developer.

    Thanks in advance.
    Bossqwerty is currently the best one around and should be the best until MoP. For now, no one else is working on a warrior PVE rotation.

    [BETA] PQRotation - an automated ability priority queue.
  2. #8942
    itzaraya's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maleth View Post
    Hey guys, whats the best Arms Warrior PVE profile around at the moment? The best I can find is Bossqwerty's one. But as he is no longer around or playing WoW, i'm looking to switch to a profile which will be getting updated etc.

    Would be great if the Nova team would do it again, as apparently the only Arms profile being updated is the PVP one from them, which is great. Would love to see a new PVE one from them, or another skilled developer.

    Thanks in advance.
    Boss's profile is flawless, theres no need for anything else.

  3. #8943
    bgr's Avatar Sergeant
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im playing on a live server i wouldnt even bother playing on a private one

  4. #8944
    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)
    This may be usefull. All racial spells on a single ability:

    Ability names: RACIALS
    SpellID: 0

    Code:
    if UnitAffectingCombat("player") then
    
      -- Arcane Torrent (Blood Elf)
      if IsSpellKnown(28730) and GetSpellCooldown(28730) == 0 
      and 100 * UnitPower("player") / UnitPowerMax("player") < 80 
      then CastSpellByID(28730) return true end
    
      -- Berserking (Troll)
      if IsSpellKnown(26297) and GetSpellCooldown(26297) == 0 
      then CastSpellByID(26297) return true end
    
      -- Blood Fury (Orc)
      if IsSpellKnown(20572) and GetSpellCooldown(20572) == 0 
      then CastSpellByID(20572) return true end
    
      -- Stomp (Tauren) 
      if IsSpellKnown(20549) and GetSpellCooldown(20549) == 0 
      and select(9,UnitCastingInfo("target")) == false and CheckInteractDistance("target", 3) and not PQR_IsMoving(1) 
      then CastSpellByID(20549) return true end
    
      -- Will of the Forsaken (Undead)
      if not GotFear then
        function GotFear(t) 
          local debuff = { 10326, 8122, 2094, 5782, 5484, 6358, 5246 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(7744) and GetSpellCooldown(7744) == 0 and GotFear("player") 
      then CastSpellByID(7744) return true end
    
      -- Rocket Barrage (Goblin)
      if IsSpellKnown(69041) and GetSpellCooldown(69041) == 0 
      and IsSpellInRange(GetSpellInfo(69041),"target") == 1 and UnitCanAttack("player","target") 
      then CastSpellByID(69041) return true end
    
      -- Gift of the Naaru (Draenei)
      if IsSpellKnown(59543) and GetSpellCooldown(59543) == 0 
      and 100 * UnitHealth("player") / UnitHealthMax("player") < 30 
      then CastSpellByID(59543,"player") return true end
    
      -- Stoneform (Dwarf)
      if not GotPoison then
        function GotPoison(t)
          local i, debuff = 1, select(5,UnitDebuff(t, 1)) 
          while debuff do
            if debuff == "Poison" or debuff == "Disease" then return true end
            i = i + 1 debuff = select(5,UnitDebuff(t, i)) 
          end
        end
      end
      if IsSpellKnown(20594) and GetSpellCooldown(20594) == 0 and GotPoison("player") 
      then CastSpellByID(20594) return true end
    
      -- Escape Artist (Gnome)
      if not CantMove then
        function CantMove(t) 
          local debuff = { 122, 53754, 1715, 12323, 3775, 339, 48483, 8056, 2974, 45524 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(20589) and GetSpellCooldown(20589) == 0 and CantMove("player") 
      then CastSpellByID(20589) return true end
    
      -- Every Man for Himself (Human)
      if not LostControl then
        function LostControl(t) 
          local debuff = { 122, 10326, 8122, 2094, 5782, 5484, 6358, 5246, 408 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(59752) and GetSpellCooldown(59752) == 0 and LostControl("player") 
      then CastSpellByID(59752) return true end
    
    end
    Maybe miss any important spell on pvp racials, if you think something must be there feedback
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  5. #8945
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is an update for my paladin pvp profile

    Cokx Paladin PVP Gold

    Cokx_Paladin_PVP_Gold.rar

    i changed the logic behind healing and dispel.
    its testen in rbg's @ a rating of 2400

    if you like it and use it, look @ my sig

  6. #8946
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    This may be usefull. All racial spells on a single ability:

    Ability names: RACIALS
    SpellID: 0

    Code:
    if UnitAffectingCombat("player") then
    
      -- Arcane Torrent (Blood Elf)
      if IsSpellKnown(28730) and GetSpellCooldown(28730) == 0 
      and 100 * UnitPower("player") / UnitPowerMax("player") < 80 
      then CastSpellByID(28730) return true end
    
      -- Berserking (Troll)
      if IsSpellKnown(26297) and GetSpellCooldown(26297) == 0 
      then CastSpellByID(26297) return true end
    
      -- Blood Fury (Orc)
      if IsSpellKnown(20572) and GetSpellCooldown(20572) == 0 
      then CastSpellByID(20572) return true end
    
      -- Stomp (Tauren) 
      if IsSpellKnown(20549) and GetSpellCooldown(20549) == 0 
      and select(9,UnitCastingInfo("target")) == false and CheckInteractDistance("target", 3) and not PQR_IsMoving(1) 
      then CastSpellByID(20549) return true end
    
      -- Will of the Forsaken (Undead)
      if not GotFear then
        function GotFear(t) 
          local debuff = { 10326, 8122, 2094, 5782, 5484, 6358, 5246 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(7744) and GetSpellCooldown(7744) == 0 and GotFear("player") 
      then CastSpellByID(7744) return true end
    
      -- Rocket Barrage (Goblin)
      if IsSpellKnown(69041) and GetSpellCooldown(69041) == 0 
      and IsSpellInRange(GetSpellInfo(69041),"target") == 1 and UnitCanAttack("player","target") 
      then CastSpellByID(69041) return true end
    
      -- Gift of the Naaru (Draenei)
      if IsSpellKnown(59543) and GetSpellCooldown(59543) == 0 
      and 100 * UnitHealth("player") / UnitHealthMax("player") < 30 
      then CastSpellByID(59543,"player") return true end
    
      -- Stoneform (Dwarf)
      if not GotPoison then
        function GotPoison(t)
          local i, debuff = 1, select(5,UnitDebuff(t, 1)) 
          while debuff do
            if debuff == "Poison" or debuff == "Disease" then return true end
            i = i + 1 debuff = select(5,UnitDebuff(t, i)) 
          end
        end
      end
      if IsSpellKnown(20594) and GetSpellCooldown(20594) == 0 and GotPoison("player") 
      then CastSpellByID(20594) return true end
    
      -- Escape Artist (Gnome)
      if not CantMove then
        function CantMove(t) 
          local debuff = { 122, 53754, 1715, 12323, 3775, 339, 48483, 8056, 2974, 45524 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(20589) and GetSpellCooldown(20589) == 0 and CantMove("player") 
      then CastSpellByID(20589) return true end
    
      -- Every Man for Himself (Human)
      if not LostControl then
        function LostControl(t) 
          local debuff = { 122, 10326, 8122, 2094, 5782, 5484, 6358, 5246, 408 }
          for i=1, #debuff do if UnitDebuffID(t,debuff[i]) then return true end end
        end
      end
      if IsSpellKnown(59752) and GetSpellCooldown(59752) == 0 and LostControl("player") 
      then CastSpellByID(59752) return true end
    
    end
    Maybe miss any important spell on pvp racials, if you think something must be there feedback
    one prob i've ran into is some racials have a differ spellid for the class. blood elf being one.

    Please if someone helped you donate rep to them.

  7. #8947
    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 crystal_tech View Post
    one prob i've ran into is some racials have a differ spellid for the class. blood elf being one.
    I see, there is 5 diferent arcane torrent and 3 Blood Fury
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  8. #8948
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can this be used for arenas????

  9. #8949
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cokx View Post
    Here is an update for my paladin pvp profile

    Cokx Paladin PVP Gold

    Cokx_Paladin_PVP_Gold.rar



    i changed the logic behind healing and dispel.
    its testen in rbg's @ a rating of 2400

    if you like it and use it, look @ my sig
    Is this any good for arenas????

  10. #8950
    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 saga3180 View Post
    Is this any good for arenas????

    try it out... go do a skirimish or something... **** I hate that question... does it work in this or that... go try it out imo
    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

  11. #8951
    Chicotheman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    try it out... go do a skirimish or something... **** I hate that question... does it work in this or that... go try it out imo
    Skirmish hasn't been in the game for a pretty long time now 0_0

  12. #8952
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    try it out... go do a skirimish or something... **** I hate that question... does it work in this or that... go try it out imo
    Just ignore it you hate it. No need to comment if you hate it.

  13. #8953
    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 saga3180 View Post
    Just ignore it you hate it. No need to comment if you hate it.
    Well I am allergic to lazy people I guess... Prety sad when this program allows you to be extremely lazy but damn you set a new low.

    to the other person you are correct there are no more skirmishes anymore but you can do a war game or just que for a BG and see how it does imo.
    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

  14. #8954
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    Well I am allergic to lazy people I guess... Prety sad when this program allows you to be extremely lazy but damn you set a new low.

    to the other person you are correct there are no more skirmishes anymore but you can do a war game or just que for a BG and see how it does imo.

    Agree completely, not hard to quickly go test it, and probably much faster than waiting on a reply

  15. #8955
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    Well I am allergic to lazy people I guess... Prety sad when this program allows you to be extremely lazy but damn you set a new low.

    to the other person you are correct there are no more skirmishes anymore but you can do a war game or just que for a BG and see how it does imo.
    Why so quickly to assume i am lazy? Maybe i don't have the time to get on and play at this exact moment and test it.
    Was just asking for a nice response

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:25 AM. 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