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

Shout-Out

User Tag List

Page 494 of 731 FirstFirst ... 394444490491492493494495496497498544594 ... LastLast
Results 7,396 to 7,410 of 10955
  1. #7396
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay I didn't upgrade yet, so using ur older ones still and KMD's

    [BETA] PQRotation - an automated ability priority queue.
  2. #7397
    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 Xelper View Post
    I am not 100% sure if it would load in PQR1.1. Best to be safe and use 2.0. The spell delay stuff certainly wouldn't work in 1.x.

    Make sure you have the latest version.
    http://dl.dropbox.com/u/39925787/PALADIN_Abilities.zip
    I've been working with kmd for an updated aspects switcher. We talked about ideas, he may have something in the work now lol. After he's done I see no reason why anyone wouldn't want the updated functions of pqr 2 :-)

    Sent from my phone.
    ^0^Team Nova's PQR NCC ^0^

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

  3. #7398
    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)
    Should really only take about 5 minutes to fix KMDs stuff.

    Create 2 functions (Put this at the top of the rotation):
    Ability: Initialize
    Spell ID: 0
    Code:
    if kmdInit == nil then
    	kmdInit = true
    	function PQ_SwitchToHawk()
    		if UnitBuffID("player", 13165) == nil then
    			CastSpellByID(13165, "player")
    		end
    	end
    	
    	function PQ_SwitchToFox()
    		local FoxBuff = UnitBuffID("player", 82661)
    		if PQR_IsMoving(1) == true and FoxBuff == nil and UnitExists("target") then
    			CastSpellByID(82661, "player")
    		end
    	end
    end
    Then in all of the abilities you want to cast Hawk for, change the code from:
    Code:
    return true
    to:
    Code:
    PQ_SwitchToHawk() return true
    Then for Steady/Cobra Shot, change the code to:
    Code:
    PQ_SwitchToFox() return true

  4. #7399
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    I am not 100% sure if it would load in PQR1.1. Best to be safe and use 2.0. The spell delay stuff certainly wouldn't work in 1.x.

    Make sure you have the latest version.
    http://dl.dropbox.com/u/39925787/PALADIN_Abilities.zip
    Nice profile. Had to remove all the /startattack from actions under all spells though Works perfect after removing all of them.

  5. #7400
    Budoy's Avatar Sergeant
    Reputation
    13
    Join Date
    Dec 2011
    Posts
    67
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Xelper


    Ooops- I included some debug code in my rotation on accident.

    Go into the ability editor and remove "PQR_Test("Hello")" from the ability "Crusader Strike (<3 HP)" and hit save. I'll repost in a bit.

    I reuploaded it...
    http://dl.dropbox.com/u/39925787/Xelper_PALADIN.zip



    it wont switch seal of u use the AOE

  6. #7401
    Budoy's Avatar Sergeant
    Reputation
    13
    Join Date
    Dec 2011
    Posts
    67
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nm i got it, u put the spell ID on recast delay

  7. #7402
    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 Budoy View Post
    nm i got it, u put the spell ID on recast delay
    Good catch, thanks for letting me know.

    Reupoaded with that fixed. I also added out of combat seal switching.

    http://dl.dropbox.com/u/39925787/Xelper_PALADIN.zip
    Last edited by Xelper; 03-12-2012 at 04:35 PM.

  8. #7403
    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)
    Improved a bit the Ultraxion code for warrior tank, can be use by anyone changing the spellid of defensive cooldowns.

    What this does: Click the big buttom when the Hour of Twilight is about to cast and dont got Shield Wall or Last Stand buff.

    Code:
    -- 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.1 
    and not UnitBuffID("player",871) and not UnitBuffID("player",12975) 
    then RunMacroText("/click ExtraActionButton1") end
    This way all you need to do as tank is to use defensive cooldown when you want to be hit by Hour of twilight.

    Some examples to skip buttom click and take hit:

    and not UnitBuffID("player",4543 -- Mage used iceblock
    and not UnitBuffID("player",31224) -- Rogue used Cloak of Shadows
    and not UnitBuffID("player",47585) -- Priest used Dispersion
    and not UnitBuffID("player",48707) -- DK used Anti-Magic Shell

  9. #7404
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see the cooldowns for most other classes but is there any way to add deterrence in for hunters?

  10. #7405
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MastaRage View Post
    I see the cooldowns for most other classes but is there any way to add deterrence in for hunters?
    and not UnitBuffID("player",19263) -- this is the spell id I found off of wowhead.
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  11. #7406
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so it would look like this and I would have to click deterrence or it auto clicks?
    -if I have to click deterrence for it to not click the button how early do i have to click before?>

    -- 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.1
    and not UnitBuffID("player",19263)
    then RunMacroText("/click ExtraActionButton1") end

  12. #7407
    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)
    @ Firepong iss our Moonkin profile with mousover dots and focus dots?

  13. #7408
    johnnydnight's Avatar Site Donator
    Reputation
    4
    Join Date
    Oct 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont know what i am doing wrong but i have been unable to get the profiles to show up at all i see the program running fine but when it comes to loading the profiles .. nothing works i have added what appears to be the updated profiles or tried using the old ones and they fail to work

  14. #7409
    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 MastaRage View Post
    so it would look like this and I would have to click deterrence or it auto clicks?
    -if I have to click deterrence for it to not click the button how early do i have to click before?>
    The rotation dont know when your raid leader ask you to use Deterrance. What this does is click the buttom when you dont have any buff active than makes you survive the hit. You must use deterrance manually.

  15. #7410
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    The rotation dont know when your raid leader ask you to use Deterrance. What this does is click the buttom when you dont have any buff active than makes you survive the hit. You must use deterrance manually.
    Ya that's how it seemed to me, but at how many seconds before HoT does it click the button?
    Like what is a good "safe" time to click deterrence (lasts 5 sec) before it opts to use the button is what i'm trying to ask.

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