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

Shout-Out

User Tag List

Page 353 of 731 FirstFirst ... 253303349350351352353354355356357403453 ... LastLast
Results 5,281 to 5,295 of 10955
  1. #5281
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah if you have the boss on focus the healing will stop when most people in raid are low

    [BETA] PQRotation - an automated ability priority queue.
  2. #5282
    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)
    @ishtro: Thanks a bunch man! My guild already cleared 6/8 Heroic Wednesday so I couldn't test it yesterday myself, Spine of Deathwing is a wreacking fight if you don't have 4-set. >_<

    Almost done with my profile now as well!

  3. #5283
    Testy9's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    41
    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
    just select another aura, it means that it didn't get saved properly and you are probably in crusader aura right? if u select something else it should be fine
    I've tried that, but I still get the error =/

  4. #5284
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ishtro View Post
    Code:
    -- Fading Light
    local FL = {105925, 109075, 110068, 110069, 110070, 110078, 110079, 110080}
    
    for i,v in ipairs(FL) do
       local _,_,_,_,_,_,flight = UnitDebuffID("player", v)
       if flight 
          and flight - GetTime() < .6 
          then RunMacroText("/click ExtraActionButton1") 
       end 
    end
    
    -- Hour of Twilight
    local HoTcast,_,_,_,_,endtime = UnitCastingInfo("boss1")
    local HoT = {109415, 106371, 109416, 109415, 109417}
        
    for i,v in ipairs(HoT) do
       if HoTcast == GetSpellInfo(v) 
          and endtime/1000 - GetTime() < .4 
          then RunMacroText("/click ExtraActionButton1")
       end
    end
    
    -- Madness 
    local _,_,_,_,_,_,shrapnel = UnitDebuff("player","Shrapnel")
    
    if shrapnel 
       and shrapnel - GetTime() < 1
       then RunMacroText("/click ExtraActionButton1") 
    end
    tested and works
    Code for Ultraxion worked very well.
    I would put a larger time for the Shrapnel like 2 s (I died because the click was too late in Raid Finder).

    Thanks for sharing.

  5. #5285
    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
    I've tried that, but I still get the error =/
    When you get the error you are in Crusader Aura right? Or maybe no Aura?
    ^0^Team Nova's PQR NCC ^0^

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

  6. #5286
    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 ishtro View Post
    Code:
    -- Fading Light
    local FL = {105925, 109075, 110068, 110069, 110070, 110078, 110079, 110080}
    
    for i,v in ipairs(FL) do
       local _,_,_,_,_,_,flight = UnitDebuffID("player", v)
       if flight 
          and flight - GetTime() < .6 
          then RunMacroText("/click ExtraActionButton1") 
       end 
    end
    
    -- Hour of Twilight
    local HoTcast,_,_,_,_,endtime = UnitCastingInfo("boss1")
    local HoT = {109415, 106371, 109416, 109415, 109417}
        
    for i,v in ipairs(HoT) do
       if HoTcast == GetSpellInfo(v) 
          and endtime/1000 - GetTime() < .4 
          then RunMacroText("/click ExtraActionButton1")
       end
    end
    
    -- Madness 
    local _,_,_,_,_,_,shrapnel = UnitDebuff("player","Shrapnel")
    
    if shrapnel 
       and shrapnel - GetTime() < 1
       then RunMacroText("/click ExtraActionButton1") 
    end
    tested and works
    A little odd that you would be attempting to recreate the wheel when sheuron's profiles has had code for this for months.

    Code:
    -- Avoid sudden death on Ultraxion
    local fadingtime = select(7,UnitDebuffID("player",110070))
    if fadingtime and fadingtime - GetTime() < 1 then RunMacroText("/click ExtraActionButton1") end 
    
    -- Avoid Hour of Twilight on Ultraxion, Delete next 3 lines if you are working as tank
    local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
    if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() < 1.3 
    then RunMacroText("/click ExtraActionButton1") end 
    
    -- Try to aim on Darkmoon Faerie Cannon
    local canontime = select(7,UnitBuffID("player",102116))
    if canontime and canontime - GetTime() < 1.15 then CancelUnitBuff("player","Magic Wings") end
    
    -- Avoid sudden death on Madness (kickmydog)
    local tentacledeath = select(7,UnitDebuffID("player",109597))
    if tentacledeath and tentacledeath - GetTime() < 1 then RunMacroText("/click ExtraActionButton1") end

  7. #5287
    bobbyjayblack's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    When will PQRotation support WoW 64-bit?

  8. #5288
    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)
    where i can found a shadow and dk endgame dragonsoul t13 4pc rotation script?

  9. #5289
    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)
    Bubba's profiles work if they're not, it probably because of the new offsets for the program.
    Because, I had to delete Bubba's profiles and copy them again in the profiles's folder so they could work again.
    So before, saying anyting bad to an author, try to delete and copy them again or close the PQR and open it again or ask the author for help!
    Or, bear with and tell yourself that the profile is just outdated like some druid profiles on the wiki.
    Last edited by couky; 02-03-2012 at 01:31 PM.

  10. #5290
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I have a question for Xelper, is there any way to prevent auto kick when in stealth? Also I wanted to do an auto focus kick feature, any hints on how the kick + delay logic works so I can replicate it?

  11. #5291
    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 vitalic View Post
    I have a question for Xelper, is there any way to prevent auto kick when in stealth? Also I wanted to do an auto focus kick feature, any hints on how the kick + delay logic works so I can replicate it?
    deactivate the auto interrupt.

  12. #5292
    stec2012's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, this is an amazing bot to use.

    Are there any Resto Shaman profiles floating around, i cant seem to locate one.

    EDIT: ignore this, i found one. Going to give it a pop now
    Last edited by stec2012; 02-03-2012 at 02:35 PM.

  13. #5293
    soheil55's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)




    hi all

    i dont know why no one care about moonkin profile this is for the 4.2 but steel it has a some problem and i see some problem in this rotation i have one please would you please guyz make a new and good moonkin profile for druid thank you so much

    old profile : old moonkin profile.rar

    scan link : https://www.virustotal.com/file/660f...is/1328297527/






  14. #5294
    Shadezblood's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Question

    Is there a PGR rotation for a combat rogue that includes blade furry fror PvE?

  15. #5295
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    deactivate the auto interrupt.
    Not a very coder like response, where is your ingenuity? I will probably re-implement target interrupts as a rotation ability and add some custom logic to not interrupt in stealth, I just need to know how the interrupts actually work (i.e. is it based on a timer initiated at spell_cast_start events or something?) I don't know the WOW api very well.

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 01:05 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