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

Shout-Out

User Tag List

Page 403 of 731 FirstFirst ... 303353399400401402403404405406407453503 ... LastLast
Results 6,031 to 6,045 of 10955
  1. #6031
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    This is not mine, Ishtro made it:

    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() < 2
          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() < 1
          then RunMacroText("/click ExtraActionButton1")
       end
    end
    
    -- Madness 
    local _,_,_,_,_,_,shrapnel = UnitDebuff("player","Shrapnel")
    
    if shrapnel 
       and shrapnel - GetTime() < .75 
       then RunMacroText("/click ExtraActionButton1") 
    end
    Does this work for HC Ultra also?

    [BETA] PQRotation - an automated ability priority queue.
  2. #6032
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    This function can be usefull for your profiles, return the number of players having same target as you:

    Code:
      function Pressure(t)
        local pressure = 1
        local group = "party"
        local members = GetNumPartyMembers()
        if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() pressure = pressure -1 end
        for i = 1, members do
          local member = group..tostring(i)
          if UnitGroupRolesAssigned(member) ~= "HEALER" and UnitIsUnit(t,member..t) and not UnitIsDeadOrGhost(member) 
          then pressure = pressure + 1 end
        end
        return pressure
      end
    Why we need this?

    We dont want to cast DoTs when the unit is about to die. To solve this next code can be used

    Code:
    if UnitHealth("target") > UnitHealthMax("player") then return true end
    Wont cast spell if target current hp is lower than player max hp.

    Scenario: Our char max hp is 140k and we dps a mob with 1000k. Playing a Hunter MM we cast Serpent Sting on the target, but if DoT expires when 140k left on him dont want to cast DoT again because he ll die to fast to make it worth. This value works fine when we are playing solo, but depend number on people in group target ll die faster, to solve this done the function above to use this way...

    Code:
    if UnitHealth("target") > UnitHealthMax("player")*Pressure("target") then return true end
    Some example data with a character havin 140k hp:
    Playing solo wont cast spell if target goes below 140k hp
    Playing on a party, 4 players have same target as you: 140*4 = 560k
    Playing on a 10 man raid: 7 players have same target as you: 140*7 = 980k
    Player on a 25 man raid: 19 players have same target as you: 140*19 = 2660k
    This can be really useful for raid leaders to see who is failing. If anyone could make it to print names of failers in self whisper on button pressed.

  3. #6033
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by merrikh View Post
    ok blinded i tested ur combat profile on ultraxion and im at 25k dps, 7mill dmg done 383gs w/no real gems or chants (no landslides on fear and veng) ect.
    So this dps amount is a good value for u?

    Originally Posted by gimerak View Post
    Typo in this. You say RIGHT Ctr to toggle Cds.. its LEFT =) Testing profile out now
    Oh my fault. It was 3am or so when i posted it

  4. #6034
    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 yourson View Post
    This can be really useful for raid leaders to see who is failing. If anyone could make it to print names of failers in self whisper on button pressed.
    Probably there is already any addon doing that. Seach keyword "target" on a wow addon site.

  5. #6035
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    4.3.3 is on PTR and marked as Realease. There is a chance we will see it live next week.

  6. #6036
    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)
    That's a really incredible bit of code, Sheuron. Thanks for that!

  7. #6037
    LtButterman's Avatar Member
    Reputation
    4
    Join Date
    Jan 2012
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Thanks, you're right. I made a really silly mistake. When testing the rotation I always manually applied execute to start it up, I forgot to make the bot actually do it itself. That does mean you lost a decent amount of dps, because it won't even start the advanced execute rotation until you have at least one stack of executioner. How was your dps before execute phase?

    Here's the fixed version:

    BossSD6.5.rar
    Not gonna lie.. wasn't that great but im sure i saw an increase... especially in burst i never touch 60k burst as arms on HM Warlord and yet i saw it last week!

    So should I download from that link or the one you posted 2 pages after this?

  8. #6038
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Download 6.6 as its fixed.

  9. #6039
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where is 6.6?

  10. #6040
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sry, my bad 6.7

  11. #6041
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yourson View Post
    Sry, my bad 6.7
    Yeah I released like 4 versions in a couple hour time span, sorry. Check page 403 or 402 I believe. 6.7 is the latest and definitely the best so far. 87k dps on LFR madness this week, peak at 100k. Granted my gear has improved a lot, 398 ilvl

    Also to answer Maleth about colossus smash being low on the list - it's a bit deceiving, the only thing that will actually cast ahead of it is mortal strike and battle stance - > overpower so as to not waste procs. Execute will also cast before it but that part is important for the advanced execute rotation.

    edit: It was on the last page, here's the link for 6.7 BossSD6.7.rar
    Last edited by Bossqwerty; 02-18-2012 at 11:12 AM.

  12. #6042
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Yeah I released like 4 versions in a couple hour time span, sorry. Check page 403 or 402 I believe. 6.7 is the latest and definitely the best so far. 87k dps on LFR madness this week, peak at 100k. Granted my gear has improved a lot, 398 ilvl

    edit: It was on the last page, here's the link for 6.7 BossSD6.7.rar
    No reason to say sorry, you are doing great job for community, we all have to say huge thanks to you.

    Whit which addon are you seeing personal current dps? Recount only shows raid in whole real time dps graph.

  13. #6043
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Subtlety is almost done
    Release it later ( after my raid ) or tomorrow i hope u will enjoy it ^^

  14. #6044
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yourson View Post
    No reason to say sorry, you are doing great job for community, we all have to say huge thanks to you.

    Whit which addon are you seeing personal current dps? Recount only shows raid in whole real time dps graph.
    I use recap and recount together. Recap shows personal dps based on the second you started attacking.

    And for everyone else, as you can see my profiles are all in my signature now. Just need to find a post from me to get the latest versions.
    Last edited by Bossqwerty; 02-18-2012 at 11:20 AM.

  15. #6045
    LtButterman's Avatar Member
    Reputation
    4
    Join Date
    Jan 2012
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Jesus christ Boss.. topped HM Ultra this week at 54k.. Usually at 42-46.

    You continue to amaze me, good sir. It's a ****in shame MoP expansion is shitting on Arms and bringing back TG I pray youre still around till then..

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 07:22 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