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

User Tag List

Page 10 of 731 FirstFirst ... 6789101112131460110510 ... LastLast
Results 136 to 150 of 10955
  1. #136
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am looking forward to someone posting thier Druid abilities and rotations.

    [BETA] PQRotation - an automated ability priority queue.
  2. #137
    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)
    Ok seems like it was all an typo in spellID for me that I overlooked. TF works. Thanks mate!

    Doing 15-18k DPS on Boss Dummy and 19-23k DPS on lvl 60 Dummy.

    ----EDITv2----
    The problems I reported where from my side, managed to find an missing "end" in the Ferocious Bite ability.

    Having problems with warrior Trauma debuff on targets, getting lag when it appears and it won't cast Shred, Mangle seems to work tho as it won't reapply mangle if Trauma is up(intended). Trying to find the cause of that but not that easy, the warriors are being slackers at training dummies.
    If you know the name/spellid of any more 30% more bleed damage debuffs then please tell me I think rogues got one but don't know the name of it.

    ----EDIT----

    Originally Posted by amustrami View Post
    I am looking forward to someone posting thier Druid abilities and rotations.
    I am currently working on Feral Cat Abilities and Rotations, seems to be having some problems but once those are fixed it should be a pretty decent release.
    Gonna add a Feral Cat AOE rotation aswell when my problems are solved.
    Last edited by AdamZZ; 07-16-2011 at 11:55 AM.

  3. #138
    popeofdope's Avatar Sergeant
    Reputation
    11
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Soul swap is semi useless anyway since they added a 30 second cooldown, at least in PvE. Since UA will run out in 15 seconds, Corr in 18 and CoA in 24, you are better of manually recasting them at your focus target and leaving BoD on your main target.

  4. #139
    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)
    You are correct there popeofdope but getting that to work would basically make other stuff like applying all dots possible too.

    It is easy to figure out if any debuff is up on the focustarget but I cannot figure out a way to cast something at the focus target instead of the normal target. I am giving up on that now

  5. #140
    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)
    Mangle:
    Code:
    local mCatMangle, _, _, _, _, _, mcattimer = UnitDebuffID("target", 33876)
    local mBearMangle, _, _, _, _, _, mbeartimer = UnitDebuffID("target", 33878)
    local WarriorBuff, _, _, _, _, _, mwartimer = UnitDebuffID("target", 46857)
    
    
    if WarriorBuff ~= nil then
    	if mwartimer - GetTime() < 1 then
    		return true
    	end
    elseif mCatMangle ~= nil then
    	if mcattimer - GetTime() < 1 then
    		return true
    	end
    elseif mBearMangle ~= nil then
    	if mbeartimer - GetTime() < 1 then
    		return true
    	end
    else
    	return true
    end
    
    if PQR_NotBehindTarget() then
    	return true
    end
    Shred:
    Code:
    local CatMangle, _, _, _, _, _, cattimer = UnitDebuffID("target", 33876)
    local BearMangle, _, _, _, _, _, beartimer = UnitDebuffID("target", 33878)
    local sWarriorBuff, _, _, _, _, _, wartimer = UnitDebuffID("target", 46857)
    
    
    if sWarriorBuff ~= nil then
    	if wartimer - GetTime() > 1 then
    		if PQR_NotBehindTarget() then
    			return false
    		else
    			return true
    		end
    	end
    elseif CatMangle ~= nil then
    	if cattimer - GetTime() > 1 then
    		if PQR_NotBehindTarget() then
    			return false
    		else
    			return true
    		end
    	end
    elseif BearMangle ~= nil then
    	if beartimer - GetTime() > 1 then
    		if PQR_NotBehindTarget() then
    			return false
    		else
    			return true
    		end
    	end
    end
    None of these are working when there is a bleed damage increasing buff up that isn't from me. They only work if I apply the mangle or no-one else is using Trauma/Mangle.

  6. #141
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol best bet is to make a soul swap macro in game and just spam the hell out if it once the bot casts the first soul swap.
    /cast [@focus] soul swap.

    as for the soul fire casting make sure you have soul shards or remove soulburn from the rotation and see if that fixes the problem.

  7. #142
    n1bl3r's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    OK one last question then my arcane mage rotation is done, I have not been able to find code that will do the following. Thsi will be the conserve phase.

    Check to see how many times Arcane Blast (30451) has been cast, i know there are addons that keep tract.
    Also to see when Arcane Missile (5143) procs.

    What i need to do is have "arcane blast - conserve" ability monitor for when Arcane Missile procs and and have casted atleast two Arcane Blasts. There is also some other monitoring it will do but i already have that figured out.

    Thanks,

  8. #143
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New version coming out tonight will have more configurable hotkeys


  9. #144
    popeofdope's Avatar Sergeant
    Reputation
    11
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    You are correct there popeofdope but getting that to work would basically make other stuff like applying all dots possible too.

    It is easy to figure out if any debuff is up on the focustarget but I cannot figure out a way to cast something at the focus target instead of the normal target. I am giving up on that now
    In the Spell ID box enter 0.
    In the actions box enter /cast [target=focus] Corruption

  10. #145
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by popeofdope View Post
    In the Spell ID box enter 0.In the actions box enter /cast [target=focus] Corruption
    Hmm... I'll include something to work around that as well. I'll just change the Self Cast Ability option to a "Target" option that will include:Target (default)PlayerFocus

  11. #146
    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)
    @AdamZZ:

    I'm not really sure why your abilities are acting up, but try these instead:

    -- Mangle
    Code:
    -- Rogues and Warriors can handle it themselves.
    local hasCatMangle, _, _, _, _, _, CatMangleTimer = UnitDebuffID("target", 33876, "PLAYER")
    local hasBearMangle _, _, _, _, _, BearMangleTimer = UnitDebuffID("target", 33878, "PLAYER")
    local hasTrauma = UnitDebuffID("target", 46857)
    local hasHemorrhage = UnitDebuffID("target", 16511)
    
    -- First, let's let other people handle their own debuffs
    if hasTrauma ~= nil then
        return false
    elseif hasHemorrhage ~= nil then
        return false
    elseif hasBearMangle ~= nil then
        return false
    
    -- Let us handle it!
    elseif hasCatMangle ~= nil or hasBearMangle ~= nil then
        -- Check the timer
        if CatMangleTimer - GetTime() < 1 or BearMangleTimer - GetTime() < 1 then
    		-- Are we behind the target?
    		if PQR_NotBehindTarget() then
    			return true
    		end
        end
    else
        -- No debuffs up? Go go.
        return true
    end
    -- Shred
    Code:
    -- Check for the debuffs.
    local hasCatMangle = UnitDebuffID("target", 33876)
    local hasBearMangle = UnitDebuffID("target", 33878)
    local hasTrauma = UnitDebuffID("target", 46857)
    local hasHemorrhage = UnitDebuffID("target", 16511)
    
    -- Just check for all buffs, we have no casting time on Shred so no need for a timer check
    if hasCatMangle ~= nil or hasBearMangle ~= nil or hasTrauma ~= nil or hasHemorrhage ~= nil then
        if PQR_NotBehindTarget() then
            return true
        end
    end
    Yes! Subtlety Rogues does have a 30% bleed effect as well. :P Hemorrhage.
    Added checks for all 30% bleed effects and then made a check if you're either using Cat or Bear form all though I'm not sure why you would swap between the two at all, then added a final check to see if you're actually behind the target. :P

    Let me know how these work out for 'ya!

    @Xelper: Looking forward to the new version! Setting own key-bindings to the rotations and more rotation options looks wicked!
    Last edited by Kinky; 07-16-2011 at 05:11 PM.

  12. #147
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    MMO-Champion RaidComp - i use this to see if there's another buff/debuff they might overwrite my buff/debuff. then I use wowhead to find the ids and for coding use the warlocks Curse of the Elements to check for the other de/buffs as an example

  13. #148
    n1bl3r's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I cant seem to get this to work right, this is for the conserve phase of the arcane rotation.
    It runs throught the rotation once and then stops. It will check to see if evocation is on cooldown then fire a couple of Arcane Blasts then it will check to see if Arcane Missile is proc'ed and fire it, then it stops the rotation. Here is the code for the two abilities,

    Arcane Blast - Conserve
    Code:
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
        local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    
        if EvocationCooldown > 3 then
        return true
        end
    Arcane Missile - Conserve
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    local _,_,_,abcount,_,_,_,_,_ = UnitDebuff("player", "Arcane Blast")
    local ArcaneMissilebuff = UnitBuff("player", "Arcane Missiles!")

    if EvocationCooldown > 3 then
    if abcount >= 2 then
    if ArcaneMissilebuff ~= nil then
    return true
    end
    end
    end


    I want it to cast Arcane Blast atleast two times then Arcane Missile when it proc's after atleast 2 Arcane Blast's, and only when Evocation is on cooldown.

    When i get this part fixed I will post my Arcane Mage rotation.

    Thanks,
    Last edited by n1bl3r; 07-27-2011 at 09:22 PM.

  14. #149
    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)
    Not really sure what you're trying to do


    -- AB - Conserve
    Code:
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    
    if EvocationCooldown > 3 then
    	return true
    end
    -- Arcane Missiles
    Code:
    local EvocationStart, EvocationDuration = GetSpellCooldown(12051)
    local EvocationCooldown = (EvocationStart + EvocationDuration - GetTime())
    local _,_,_,ABcount = UnitBuffID("player", 30451)
    local AM = UnitBuffID("player", 5143)
    
    if EvocationCooldown > 3 then
    	if ABcount >= 2 then
    		if AM ~= nil then
    			return true
    		end
    	end
    end
    Not really sure if it'll work out, haven't tested it out on my own page yet.

  15. #150
    n1bl3r's Avatar Corporal
    Reputation
    6
    Join Date
    Jul 2011
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry for the confusion, these two abilities go into another rotation that is working so far. With an arcane mage we have two phases in a fight, a burn phase untill your mana is down around 30-35%, this is the arcane spam phase. When we reach 30-35% mana we cast evocation to get us back to 100% mana. Then we go into a conserve phase where we cast Arcane Blast a couple times the a Arcane Missile when it procs to reset the Arcane Blast counter.

    I already have a great working burn phase and now i an trying to get the conserve phase working. What i want to do is ahve the app cast AB a couple of times while Evocation is on cooldown, then when AM procs i want it to cast AM, and continue this rotation untill Evocation is off cooldown. These two spells are the only thing i really want going on while evocation is on cooldown. Then when evocation is off cooldown then i will enter the burn phase again.

    Hope I cleared some things up on what I am trying to do.

    Thanks,

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