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

Shout-Out

User Tag List

Page 90 of 731 FirstFirst ... 40868788899091929394140190590 ... LastLast
Results 1,336 to 1,350 of 10955
  1. #1336
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, can someone help me and find the error?
    Its a Disc PVP Profile
    Profiles.rar

    [BETA] PQRotation - an automated ability priority queue.
  2. #1337
    AdamZZ's Avatar Active Member
    Reputation
    42
    Join Date
    May 2007
    Posts
    139
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Unasrage View Post
    i belive the problem still is that he will continue to cast lifebloom after he gets 3 stacks up anyway and ignoring rotacion.

    this problem has been talked about here in forum about the fury warrior execute buff. exacly same thing happens, you want it to stack to 5 anhd them to only reaply it whend needed just so that the 5 stacks dont fall off.

    so far no code avable.. well not that e read of anyway . becouse wend the code comes it will be possigle to do this whid execution and whid lifebloom ^^
    Code:
    local friend = UnitIsFriend("player","focus")
    local mytarget = 100 * UnitHealth("focus") / UnitHealthMax("focus")
    local _,_,_,LB,_,_,LBt = UnitBuffID("focus", 33763)
    local treeoflife = UnitBuffID("player",33891)
    
    
    if LB == nil then
      return true
    end
    
    
    if LB ~= nil and LB < 3 then
      return true
    end
    
    
    if friend ~= nil and LB ~= nil and LBt - GetTime() < 4 then
      return true
    end
    Wow, that was hard to fix.

  3. #1338
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to fix this?
    buff = dont dispell
    buffs= dispell

    Code:
    buff = { 96328, 96325, 96326, 92876, 92877, 92878, 86788, 30108 }
    buffs = { 49203, 47476, 339, 3355, 34490, 19185, 50245, 4167, 44572, 83047, 118, 82691, 18469, 33395, 122, 83302, 55080, 120, 31589, 853, 20066, 31935, 605, 64044, 8122, 15487, 64695, 63685, 5782, 5484, 6358, 30283, 6789, 31117, 18498 }
    local candispel = 1
    
    for i,v in ipairs(buff) do
     if UnitDebuffID(targettoheal,v) then candispel = nil end
    end
    
    local i = 1
    for i,v in ipairs(buffs) do
      if bufftype == "Magic" and duration > 2 and candispel and UnitIsFriend("player",targettoheal) then CastSpellByID(527,targettoheal) end
      i = i + 1;
      buff,_,_,bufftype,duration = UnitDebuff(targettoheal, i)
    end
    and the same for purge

    Code:
    buff = { 43242, 92965, 93631, 76634, 88186, 76307, 31884, 2825, 32182, 80353, 1719, 17, 33763, 96802, 6940 }
    
    for i,v in ipairs(buff) do
     if bufftype == "Magic" and duration > 2 and UnitIsEnemy("player","target") then CastSpellByID(527,"target")
    end

  4. #1339
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by AdamZZ View Post
    Code:
    local friend = UnitIsFriend("player","focus")
    local mytarget = 100 * UnitHealth("focus") / UnitHealthMax("focus")
    local _,_,_,LB,_,_,LBt = UnitBuffID("focus", 33763)
    local treeoflife = UnitBuffID("player",33891)
    
    
    if LB == nil then
      return true
    end
    
    
    if LB ~= nil and LB < 3 then
      return true
    end
    
    
    if friend ~= nil and LB ~= nil and LBt - GetTime() < 4 then
      return true
    end
    Wow, that was hard to fix.
    Wow... that was a fail.. still spamming LB.. good try m8.. but next time before going all high and migthy plz do test it 1º...

  5. #1340
    lostwalker's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This little code will work great for boxing.



    Originally Posted by sheuron View Post
    A piece of code useful for all ranged dps class. Make a new ability called "extreme laziness" and place on top your abilities list:

    OBJETIVE: If you dont have any target, this will choose the tank target.

    Code:
    if GetNumPartyMembers() > 0 and UnitInRaid("player") == nil then
    
    local heisthetank = nil
    
    for i = 1, GetNumPartyMembers(), 1 do
      if UnitGroupRolesAssigned("party"..tostring(i)) == "TANK" then heisthetank = "party"..tostring(i) end
    end
    
    if heisthetank and UnitExists("target") == nil 
    and UnitAffectingCombat(heisthetank) 
    and UnitAffectingCombat(heisthetank.."target") 
    and UnitIsDead(heisthetank.."target") == nil
    and UnitCanAttack("player",heisthetank.."target")
    then TargetUnit(heisthetank.."target") end
    
    end

  6. #1341
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For the Lifebloom problem I tryed something like this, its not working tho but maybe some 1 better at this can help out.

    local mytarget = 100 * UnitHealth("focus") / UnitHealthMax("focus")
    local _,_,_,LB,_,_,LBt = UnitBuffID("focus", 33763)


    if mytarget < 95 and LB ~= nil and LBt - GetTime() < 4 then RunMacroText("/cast [target=focus] Lifebloom") end

  7. #1342
    Lofty's Avatar Banned
    Reputation
    37
    Join Date
    Feb 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Alright guys.

    A mate of mine is trying to use this on his rogue. He has tried both assasin profiles that have been posted here, but every time he selects his process there is nothing in the dropdown to choose from, yet it works on his other toons fine.

    Anyone got any ideas?

  8. #1343
    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)
    he needs to go into the profiles Folder and change ROUGE_Rotation.xml to ROUGE_Rotations.xml

  9. #1344
    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)
    I would like to have a list of 4 names of players I raid with and cast Focus Magic on one of them. Priority should be in the order the names are given and it should be checked if the target is alive and in range. I am trying to get this done but I am struggling. Some help would be awesome, thanks.

  10. #1345
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Unasrage View Post
    Wow Tks for this Kurlos
    i been meaning to do this myself sent a pm to Xelper to ask permission to do it but dint get a reply so i guess he must have missed it =) i bet he get tons of Pm's since this is just amazing tool

    btw the shaman healing profile is working decently and the holy paladin is decent to, the druud resto.. it's.. buggy

    anyways tk u for the compilation m8
    Try as I might i can't find the holy paladin profile in this thread. Can anyone point me in the right direction?

    edit:

    ok here it is ([BETA] PQRotation - an automated ability priority queue.)
    Last edited by onya; 09-11-2011 at 05:14 PM.

  11. #1346
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    DK PVP profile request

    Anyone still working on perfecting a pvp DK profile? If you could even get just the interrupt profile to work for it I could use the pve profile to do bgs with.

  12. #1347
    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 Meatglue View Post
    Anyone still working on perfecting a pvp DK profile? If you could even get just the interrupt profile to work for it I could use the pve profile to do bgs with.
    What interrupt profile are you talking about?

    Zenmex created a very nice Unholy Arena Profile that people enjoyed. I created a decent PVP Unholy profile I enjoyed. and if you just have interrupt all checked you can interrupt everything that u can. Have you tried any of the profiles i've mentioned above in bg's yet?
    ^0^Team Nova's PQR NCC ^0^

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

  13. #1348
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For all those looking for LifeBloom heres what i had been using.

    Note:
    -Have the tank on focus
    -It will always keep your focus target with 3 lifebloom and will only buff when times run till 1sec then buff again.

    Spell: Lifebloom
    ID:33763
    Target: Focus
    Delay: 500

    Code:
    local lifebloom, _, _, _, _, _, lbtimer = UnitBuffID("focus", 33763, "player")
    
    if lifebloom ~= nil then
        if lbtimer - GetTime() < 2 then
            return true
        end
    else
        return true
    end
    Its a very basic LB, but works like a charm for keep 3 stacks always on tank, and for replineshment.

  14. #1349
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    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
    What interrupt profile are you talking about?

    Zenmex created a very nice Unholy Arena Profile that people enjoyed. I created a decent PVP Unholy profile I enjoyed. and if you just have interrupt all checked you can interrupt everything that u can. Have you tried any of the profiles i've mentioned above in bg's yet?
    I am actually using your profiles I discovered. When using the pvp profile I don't use Chains of Ice or Death Grip, is there an action I need to do to activate these?
    Last edited by Meatglue; 09-11-2011 at 07:05 PM.

  15. #1350
    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 R0w4n View Post
    3. You want to use Arcane Missiles BEFORE casting evocation! Its a waste to let 4 stacks of arcane blast run because you are evocating and then arcane missiles.
    huh, arcane blast debuff gives any benefit to Arcane Missiles?

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:59 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