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

Shout-Out

User Tag List

Page 599 of 731 FirstFirst ... 99499549595596597598599600601602603649699 ... LastLast
Results 8,971 to 8,985 of 10955
  1. #8971
    leonel916's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by merrikh View Post
    Can one of the profile writers whip up a profile that auto de's stuff in your bag? And incorporate a blacklist / place to put stuff you don't want it to de? Or that a bad idea
    Bad idea, not only that there's tons of items with ids different names .

    Sent from my ADR6300 using Tapatalk

    [BETA] PQRotation - an automated ability priority queue.
  2. #8972
    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 merrikh View Post
    Can one of the profile writers whip up a profile that auto de's stuff in your bag? And incorporate a blacklist / place to put stuff you don't want it to de? Or that a bad idea
    there's addons that do almost exactly this out there already......
    ^0^Team Nova's PQR NCC ^0^

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

  3. #8973
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Given how quickly Sheuron's auto-prospect mulches through ore in my bags, I would not want to be responsible for keeping an auto-DE script away from my purples.

  4. #8974
    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 Kaolla View Post
    Given how quickly Sheuron's auto-prospect mulches through ore in my bags, I would not want to be responsible for keeping an auto-DE script away from my purples.
    Where can someone get this. I have previously used another software to auto-prospect but would be handy to just have it done while I am using pqr anyway. I am looking to do a bunch of elementium today

  5. #8975
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm aware of that. And I know there's add-ons as well. But they require you to find the Id # as well and there a pain. Was just a thought I was thinking about this morning and figured id throw it out there and see what caught.

  6. #8976
    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 merrikh View Post
    I'm aware of that. And I know there's add-ons as well. But they require you to find the Id # as well and there a pain. Was just a thought I was thinking about this morning and figured id throw it out there and see what caught.
    tradeskillmaster with the destroying module has whitelist/blacklist for d/eing items. to add to the list its just a matter of clicking the items in your bags and they are safe from de.

    Please if someone helped you donate rep to them.

  7. #8977
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    tradeskillmaster with the destroying module has whitelist/blacklist for d/eing items. to add to the list its just a matter of clicking the items in your bags and they are safe from de.
    Thanks I'll take a look at it tonight when I get home

  8. #8978
    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)
    tools patch today.

    Please if someone helped you donate rep to them.

  9. #8979
    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 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
    It was mentioned there was many Arcane Torrent(s), but depending on spec/class, Arcane Torrent needs to be handled for each of them, not just healers.

    For raiding, as example:
    DK/Warrior, entering combat & off cool down
    Rogue/Hunter, energy/focus < 25
    Prot/Ret, mana < 7000

    And also, for pvp using range check for silence when a "Kick" is not in range or on cooldown (which would be better implemented into Xelpers Interrupt Profile, IMO)

  10. #8980
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    tools patch today.
    RAWR still got to wait another hour and 10 or so minutes.

  11. #8981
    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 merrikh View Post
    Can one of the profile writers whip up a profile that auto de's stuff in your bag? And incorporate a blacklist / place to put stuff you don't want it to de? Or that a bad idea
    Pretty sure someone wrote one of these 400 pages back. I used to use it, although once in a while it would glitch and de a blue instead of greens. After that I didn't want to risk any of my epics.

    Do a search, might have been diesall. If you want it for just JC disenchanting I have one I use for myself.
    Last edited by kickmydog; 04-03-2012 at 03:03 PM.
    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

  12. #8982
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It looks like the beta is up, but from what I've seen in trade chat they didn't do anything. Still no respec, all bugged quests are still bugged, hunter pets are still huge, etc.

  13. #8983
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    Where can someone get this. I have previously used another software to auto-prospect but would be handy to just have it done while I am using pqr anyway. I am looking to do a bunch of elementium today
    Sorry for the slow response. It's actually Onya's tradeskill package that includes this ability:

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

    I haven't used it since PQR was updated to version 2, so let me know if it doesn't work.

    Version 2.2 of my Unholy DK profile will be posted tonight sometime. I have a Fantasy Baseball draft to get through

  14. #8984
    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)
    searching for Retri Lvl Profile

    can someone tell me pls where i found a retri lvl profile i found only bubbas prot lvl profil?

    ty

  15. #8985
    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 fluxflux View Post
    searching for Retri Lvl Profile

    can someone tell me pls where i found a retri lvl profile i found only bubbas prot lvl profil?

    ty
    Xelper..front page.. Out of everyone that asks for stuff, you have got to be the most annoying and laziest.

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 10:03 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