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

User Tag List

Page 41 of 731 FirstFirst ... 37383940414243444591141541 ... LastLast
Results 601 to 615 of 10955
  1. #601
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I only got execute left to fix to make a perfect fury dps.

    I got this from crystal tech, but it does not work. Anyone knows why mabe?

    What I need the execute to do execute til the buff is stacked up 5 times asap and then only refresh itself when it is less then 2 sec til the buff expires

    local unithealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local hasExecutioner = UnitAura("player", "90806")
    local duration = GetSpellCooldown("90806")
    local timeleft = (duration - GetTime())

    if unithealth <= 20 and hasExecutioner <= 4 then
    return true
    end

    if unithealth <= 20 and hasExecutioner == 5 and timeleft <= 2 then
    return true
    end

    and what it does is not use execute at all, but it blocks the rest of the priority que under it once the target is below 20% hp, so now I just auto attack after the boss gets to less then 20% :P
    Last edited by R4g4t0kk; 08-16-2011 at 04:41 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #602
    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)
    Try this R4g4t0kk:

    local unithealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local hasExecutioner, _, _, _, _, _, timer = UnitBuffID("player", 90806)
    local _, _, _, ExecutionerStacks = UnitBuffID("player", 90806)

    -- Use the skill when the "target" is at 20% health or less and current stacks are 4 or less.
    if unithealth <= 20 and hasExecutioner ~= nil then
    if ExecutionerStacks <= 4 then
    return true
    end
    end

    -- Use the skill when the "target" is at 20% health or less and time left is less or equal to 2 seconds.
    if unithealth <= 20 and hasExecutioner ~= nil and timer - GetTime() <= 2 then
    return true
    end
    Last edited by Kinky; 08-16-2011 at 05:45 PM. Reason: Forgot to paste. :P

  3. #603
    CryptoCombat's Avatar Contributor #define ME 0x1337 CoreCoins Purchaser
    Reputation
    194
    Join Date
    Jan 2009
    Posts
    473
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What's the average dps increase by using this? I can normally move my character and do my rotation pretty well.

  4. #604
    R0w4n's Avatar Retired Model Editor :3
    Reputation
    349
    Join Date
    Apr 2007
    Posts
    1,084
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n1bl3r View Post
    I have been working on the rotation to start off with 4 AB's, use gems and CD's then go into burn phase. As soon as I get it tweaked and working right I will post.
    You da man!


  5. #605
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CrysisMK2 View Post
    What's the average dps increase by using this? I can normally move my character and do my rotation pretty well.
    It makes bad players viable, and good players usually even better. (IN short)

    For me it raised feral dps by about 1500. Rogue dps by nearly 2k.

  6. #606
    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 ocso639 View Post
    I may have missed it -- but is the warlock demo rotation using bane of doom?
    yes it should and does for me.

    tomorrow I'm releasing updated rotations

  7. #607
    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)
    I'm trying to code for Aimed Shot to cast when it's cast speed is 1.7s or less. Has anyone got any sample code which uses cast speed?

  8. #608
    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 kickmydog View Post
    I'm trying to code for Aimed Shot to cast when it's cast speed is 1.7s or less. Has anyone got any sample code which uses cast speed?
    API GetSpellInfo - WoWWiki - Your guide to the World of Warcraft

  9. #609
    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)
    I am aware of this, but it didn't answer my request.

  10. #610
    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)
    local _, _, _, _, _, _, time = GetSpellInfo(17434)

    if time < 1700 then
    return true
    end

  11. #611
    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 sheuron View Post
    local _, _, _, _, _, _, time = GetSpellInfo(17434)

    if time < 1700 then
    return true
    end
    Thanks very much.

  12. #612
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't download DK profile from attachment of this forum. Can someone give external link?

  13. #613
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by andryshka View Post
    I can't download DK profile from attachment of this forum. Can someone give external link?
    Yeah quite sad that an uploaded XML file is still waiting for approval 6 days after it got uploaded. Probably all admins are together on vacation.

  14. #614
    gundrak's Avatar Private
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you go back a few pages there is one something 7.zip

  15. #615
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Try this R4g4t0kk:

    local unithealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local hasExecutioner, _, _, _, _, _, timer = UnitBuffID("player", 90806)
    local _, _, _, ExecutionerStacks = UnitBuffID("player", 90806)

    -- Use the skill when the "target" is at 20% health or less and current stacks are 4 or less.
    if unithealth <= 20 and hasExecutioner ~= nil then
    if ExecutionerStacks <= 4 then
    return true
    end
    end

    -- Use the skill when the "target" is at 20% health or less and time left is less or equal to 2 seconds.
    if unithealth <= 20 and hasExecutioner ~= nil and timer - GetTime() <= 2 then
    return true
    end
    Not working, just skips the execute entierly, does not block like the other one tough.

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