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

Shout-Out

User Tag List

Page 332 of 731 FirstFirst ... 232282328329330331332333334335336382432 ... LastLast
Results 4,966 to 4,980 of 10955
  1. #4966
    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 Testy9 View Post
    Also, we would like another check for Infusion of Light procs. When Infusion of Light procs, the profile must stop casting Holy Light and cast Divine Light only. No holy light or Flash of light - Only Divine Light.

    I always live by the philosophy waste not want not Holy Light is the cheapest heal and if that's the only heal you currently need then I don't see why it shouldn't have Infusion used I had thought about making this change back when i first made the AutoStopCasting spell but decided to let the normal rotation deal with it.... I may do a

    Code:
    if PQR_CustomTargetHP < 70 and spellName == GetSpellInfo(635) and Infusion then SpellStopCasting() end

    Don't forget LoH.

    Also, bu_ba_911. The profile (1-28-2012_HPally_Bubba_WORKING.zip) from your code google page still doesn't heal myself. At least that's what happened. I only use the No Mouseover one =/

    The Autocasting code hasn't been working correctly =/ It still uses holy light as a part of the rotation when one player or everybody is less than 58%

    Also, there's still an overhealing issue. Most of the time, I produce 40~50% overhealing. Maybe it's because I'm geared (ilvl 399 equipped) I kinda fixed it by lowering the % of certain spells, but it still overheals when the profile spams WoGs. It'd be nice if there was a check that can predict the outcome of incoming heals. Like for example... if 60,000 incoming heal *may* come from 1 holy light and 1 WoG that are about to be used, then cancel one of them. Something like that
    i have LoH coded, I just want to keep verifying the numbers to make sure that there wont be any false procs when a boss is SUPPOSED to bring everyone down to a low level

    i feel i need to make videos with each release showing that when i release something saying it works it really does for me!!! :'( why u not healing yourself!!!!!!!!!!!

    i haven't experienced the 58% problem :-/ in what type of situations does this happen? Party/10 Raid/ 25 Raid/BG's? and how grouped up is everyone?

    the overhealing issue...... i can't predict that as well as you would think.... i do have an idea though.... and it's so crazy it just might work haha
    ^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. #4967
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happydado View Post
    can someone pls help me to add sheep on focus target on frost pvp mage profile?
    pls i realy need this for arena
    PLS help me

  3. #4968
    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 happydado View Post
    pls i realy need this for arena
    PLS help me
    Code:
    local hasFocus = UnitExists("focus")
    local focusEnemy = UnitIsEnemy("player", "focus")
    
    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
     if hasFocus and focusEnemy then
      if not UnitDebuff("focus", "Polymorph") then
         return true
      end
     end
    end
    something like that haha
    ^0^Team Nova's PQR NCC ^0^

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

  4. #4969
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Regarding Loftys question

    Yorsahj have the healing debuff that for each heal on a target a counter stacks and at 5 stacks its explodes. So pretty much if Boss have this buff, Shadowed Blood of Shu'ma - Spell - World of Warcraft, then you should not aoe heal and any targetting function need to check if the healing target have 4 stacks then it is not allowed to heal except for certain spells that do not up the counter. Also extra neat if incoming heals is checked as well so that the target is at 3 at start casting and someone else is healing and stacking it to 4. Perhaps stop casting can be used.
    Deep Corruption is the debuff to check, Deep Corruption - Spell - World of Warcraft.

  5. #4970
    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 Gabbz View Post
    Regarding Loftys question

    Yorsahj have the healing debuff that for each heal on a target a counter stacks and at 5 stacks its explodes. So pretty much if Boss have this buff, Shadowed Blood of Shu'ma - Spell - World of Warcraft, then you should not aoe heal and any targetting function need to check if the healing target have 4 stacks then it is not allowed to heal except for certain spells that do not up the counter. Also extra neat if incoming heals is checked as well so that the target is at 3 at start casting and someone else is healing and stacking it to 4. Perhaps stop casting can be used.
    Deep Corruption is the debuff to check, Deep Corruption - Spell - World of Warcraft.
    with just this information i could code a pretty decent profile that would be smart about this
    ^0^Team Nova's PQR NCC ^0^

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

  6. #4971
    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 Gabbz View Post
    Regarding Loftys question

    Yorsahj have the healing debuff that for each heal on a target a counter stacks and at 5 stacks its explodes. So pretty much if Boss have this buff, Shadowed Blood of Shu'ma - Spell - World of Warcraft, then you should not aoe heal and any targetting function need to check if the healing target have 4 stacks then it is not allowed to heal except for certain spells that do not up the counter. Also extra neat if incoming heals is checked as well so that the target is at 3 at start casting and someone else is healing and stacking it to 4. Perhaps stop casting can be used.
    Deep Corruption is the debuff to check, Deep Corruption - Spell - World of Warcraft.
    Why care about that debuff when that slime is always the priority to kill?

  7. #4972
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    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
    Code:
    local hasFocus = UnitExists("focus")
    local focusEnemy = UnitIsEnemy("player", "focus")
    
    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
     if hasFocus and focusEnemy then
      if not UnitDebuff("focus", "Polymorph") then
         return true
      end
     end
    end
    something like that haha
    Where i must write this

  8. #4973
    Starphall's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Why care about that debuff when that slime is always the priority to kill?
    in heroic mode we use to let the purple slime up 60%of the time...

  9. #4974
    domestecus's Avatar Member
    Reputation
    2
    Join Date
    Mar 2007
    Posts
    43
    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
    second time i've quoted u for this problem....

    here's a link to the first time

    http://www.ownedcore.com/forums/worl...ml#post2182940 ([BETA] PQRotation - an automated ability priority queue.)
    I saw your reply to this but can you please explain what needs to be done, do you just copy paste that into the code or do you replace something. Maybe someone can change and re upload, please?

  10. #4975
    Starphall's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by happydado View Post
    Where i must write this
    open pqr go in ability editor add a new ability...call it whatever you want ex: Focus Sheep , save. then go to Profile and rotation editor ...and add your new ''focus Sheep'' to your rotation

  11. #4976
    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 domestecus View Post
    I saw your reply to this but can you please explain what needs to be done, do you just copy paste that into the code or do you replace something. Maybe someone can change and re upload, please?

    Change to DS:
    Code:
    local DS = GetShapeshiftForm()
    local _, CD = GetSpellCooldown(23920)
    local Disarm = UnitDebuffID("target", 676)
    local Spell,_,_,_,_,_,_,_,_ = UnitCastingInfo("target")
    local _, DisarmCD = GetSpellCooldown(676) 
    local DisarmDebuffs = {31884, 59016, 18499, 2825, 32182, 2825, 32182, 51713, 51271, 33702, 20572, 33697, 99740, 1719, 46924, 12472 }
    
    if DisarmCD == 0 then
      for i, v in ipairs(DisarmDebuffs) do
        if UnitBuffID("target", v) then
          if DS ~= 2 and Disarm == nil then
            return true
          end
        end
      end
    end
    
    
    if Spell == ("Arcane Blast") or Spell == ("Cyclone") or Spell == ("Mind Control") or Spell == ("Polymorph") or Spell == ("Lava Burst") or Spell == ("Entangling Roots") or Spell == ("Hex") then
    if DS ~= 2 and CD == 0 then
    RunMacroText("/equip Vicious Gladiator's Hacker")
    RunMacroText("/equip Vicious Gladiator's Shield Wall")
    return true
    end
    end
    don't forget to edit this to you're own shield set weapons/shield

    and

    Disarm:
    Code:
    local _, DisarmCD = GetSpellCooldown(676) 
    local DS = GetShapeshiftForm()
    local DisarmDebuffs = {31884, 59016, 18499, 2825, 32182, 2825, 32182, 51713, 51271, 33702, 20572, 33697, 99740, 1719, 46924, 12472 }
    
    if DisarmCD == 0 then
      for i, v in ipairs(DisarmDebuffs) do
        if UnitBuffID("target", v) then
          if DS == 2 then
            return true
          end
        end
      end
    end
    ^0^Team Nova's PQR NCC ^0^

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

  12. #4977
    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)
    Minor update on Archeology script to autocast survey

    Code:
    local gotloot = GetNumLootItems()
    local race = { "Dwarf", "Draenei", "Fossil", "Night Elf", "Nerubian", "Orc", "Tol'vir", "Troll", "Vrykul" }
    
    if GetUnitSpeed("player") == 0  
    and not UnitCastingInfo("player") 
    and gotloot == 0
    then 
      for _,v in ipairs(race) do InteractUnit(v.." Archaeology Find") end 
      if GetSpellCooldown(80451) == 0 then CastSpellByID(80451) end 
    end
    
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    Anyone knows if is possible to get position from minimap tracking, id like to know by example when im inside a digsite area or if i am facing an enemy.

  13. #4978
    couky's Avatar Corporal
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Testy9 View Post
    no need to cast judgement so often. when you melee or judge, u get a 1 min buff that allows faster mana regen anyways.
    and press ALT hold mouseover to put beacon on.
    Ok, thank for telling me about the Judgement buff.
    Still my other questions remain.

    I tested Ash's resto rotation and it never casted LifeBloom, why ?
    Last edited by couky; 01-30-2012 at 07:08 PM.

  14. #4979
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Starphall View Post
    open pqr go in ability editor add a new ability...call it whatever you want ex: Focus Sheep , save. then go to Profile and rotation editor ...and add your new ''focus Sheep'' to your rotation
    ok but where i must write the text?

  15. #4980
    Debordes's Avatar Member
    Reputation
    14
    Join Date
    Oct 2007
    Posts
    128
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Buba can you post the exact url I need to use for an svn checkout of your profiles, the one I try to use on your website says it doesn't exist when I try to checkout with it.

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 09:35 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