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

User Tag List

Page 293 of 731 FirstFirst ... 193243289290291292293294295296297343393 ... LastLast
Results 4,381 to 4,395 of 10955
  1. #4381
    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 Revenge22 View Post
    Hello guys.Help me with Morchok hc mode. I want as my frost dk changes in pitching in Blood Presence, and then back again into unholy. Thank you. (translate with google )
    i can make a code where you will switch to Blood Presence while you hold a button like Right Control. And when you release Right Control you will go back to Unholy Presence... Would that be good enough for you?
    ^0^Team Nova's PQR NCC ^0^

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

    [BETA] PQRotation - an automated ability priority queue.
  2. #4382
    Revenge22's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, thank you bu_ba.

  3. #4383
    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)
    Hey guys!
    Been laying sick, so I haven't really been thinking about posting up my "updated" Shadow Priest profile with the leveling profile yet.

    Should find some time to do it today after classes have settled all though I do have to stress that I'm working on making sure that the dots respectively, refreshes whenever you gain an intellect proc, and refresh whenever the intellect proc is about to go out, to get the maximum time possible with enhanced dot damage.


    One other thing I was thinking about; I haven't been able to find the Spell ID's for Heroic Ultraxion's Fading Light and Hour of Twilight, using the code originally from Xelper at the moment, so I'm just wondering if you guys have gotten anything yet? (I'm currently clicking Heroic Will manually when we kill Ultraxion Heroic.)

    Spesifically, I'm interested in the 10 & 25 Heroic spell ID's. I realize that I haven't been looking the 40-new pages with posts just yet, but I'll get to that, and if Xelper's code-block also works for Heroic mode, then excuse me!

    ~ Mentally

    Edit:
    Would something like this probably work? Fading Light Spell ID's were all over wowhead, so I'm not sure which to use;

    Code:
    -- Avoid Fading Light
    local FadingLight = select(7,UnitDebuffID("player",110069)) -- LFR
    	or select(7,UnitDebuffID("player",109075)) -- Normal 10
    	or select(7,UnitDebuffID("player",105925)) -- Normal 10
    	or select(7,UnitDebuffID("player",110069)) -- Heroic 10
    	or select(7,UnitDebuffID("player",110079)) -- Heroic 10
    	or select(7,UnitDebuffID("player",110070)) -- Normal 25
    	or select(7,UnitDebuffID("player",110080)) -- Normal 25
    	or select(7,UnitDebuffID("player",110078)) -- Heroic 25
    	or select(7,UnitDebuffID("player",110068)) -- Heroic 25
    if FadingLight and FadingLight - GetTime() < 0.5 then RunMacroText("/click ExtraActionButton1") end
    
    -- Let's halt everything if Left Shift is held down.
    if not IsLeftShiftKeyDown() then
    	-- Avoid Hour of Twilight
    	local HoT,_,_,_,_,timer = UnitCastingInfo("boss1")
    	if HoT == (GetSpellInfo(109415) -- LFR
    		or GetSpellInfo(106371) -- Normal 10
    		or GetspellInfo(109416) -- Heroic 10
    		or GetSpellInfo(109415) -- Normal 25
    		or GetSpellInfo(109417) -- Heroic 25)
    		and timer/1000 - GetTime() < 0.5
    	then RunMacroText("/click ExtraActionButton1") end
    end
    Basically an all-in-one ability from all sizes and difficulties from Raid Finder to 25man Heroic, with automatic use on Heroic Will on Hour of Twilight being controlled by Left Shift.
    Last edited by Kinky; 01-19-2012 at 05:36 AM. Reason: Posted Ability

  4. #4384
    porksoda's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    The link works fine for me, try it again.

    Just in case I included an rar of them both.
    I'm also seeing the links as deleted, including the RAR'd one. Any chance you could put the xml within code tags or upload to MediaFire?

  5. #4385
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally

    From Xhelpers ToH code


    Code:
    if altDown == nil then
        local spellHourOfTwilight = GetSpellInfo(109417)
        local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
        if channelSpell ~= nil and channelSpell == spellHourOfTwilight then
            local finishTime = endTime/1000 - GetTime()
            if finishTime < 1 and sDivineShield == nil  then
                return true
            end
        end
    end
    He just compares the name from the debuff and the channel spell. So no need to have different IDs.


    Also i am using his for Fading

    Code:
    local sFadingLight, _, _, _, _, _, fadingEndTime = UnitDebuffID("player", 110068)
    if sFadingLight then
        local finishTime = fadingEndTime - GetTime()
        if finishTime < 1 then
            return true
        end
    end
    and it works in LFR but the id is from HM?
    Last edited by Gabbz; 01-19-2012 at 07:51 AM.

  6. #4386
    Dakyio's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi i am using Gorthok Frost DK profile but it doesnt use hb proc everytime so that cause a bit dps loss been wondering is it possible to make it to switch into hb whenever it proc or make button (example ctrl+b) that auto switch into hb and when you relese go back into normal priority?

  7. #4387
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @bu_ba_911
    I dont know LUA and any programming language even at begginer stage:P
    So i was watching what is going if some things running. When ur pet is dismissed and u try to revive it WoW throws error like "your pet isnt dead" and dont let me channel revive after 0.00-0.1 sec. So i thought i could write something like " if petdead or notexists then cast revive if revive notchannel then cast callpet " something like that. Iam rather man who trying to make something by practicing. I spent some time last night, looking into another profiles to get it working :P
    And u are prob right that there is way to check if pet dead or not even if there isnt its frame:P But i dont.
    Found at wowwiki:
    UnitIsDead("unit")
    Does not work for ("pet") unless the pet bar is still active. Not sure why the petbar stays active when the pet dies -- it used to gray out, now it will disappear after some time or some event happens, but not immediately when the pet dies.
    @Mentally
    Iam using that one from Sheuron's profiles and it working on LFR, 10normal and 10hc.
    Last edited by vorn10; 01-19-2012 at 10:09 AM.

  8. #4388
    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 LtButterman View Post
    Is there an update on fire/arc mage profiles? Current ones are way under-performing.
    Maybe if you tell what if wrong with current rotation we can fix it

  9. #4389
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    onya resto shaman2 17012012.zip

    i've done a rewrite of my resto shaman profile. performance should be much better.

    includes event based decursing, still need to convert purge to being event based.
    its way better than the previous one , but at random times , fps drops and the rotation stops for a few seconds and then everything is back to normal

  10. #4390
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    Here it is not the final version, but a much upgraded version of my PVE_RET_Pally profile.

    Changes:
    -No usage of CD's unless your in a boss fight
    -When Zealotry is up, it now uses the proper rotation, CS, TV, Filler. The filler can be only 2 things, or Judgement or Holy Warth
    -Defensive CD's now used based on how low ur hp is
    - READ INSIDE NOTES FOR: AOE/Hammer/Hand of Freedom

    DOWNLOAD:
    PVE_PALADIN.rar
    Can you change the shift for aoe/single switching to work with combat to execute rotation, I saw it in dragonfires profile.

    I had a problem when shift clicking someones name, it constantly kept switching and spamming chat. So I changed it to execute only in combat, but now I have the problem of not knowing if I'm in aoe or single target.

    edit:

    Here is some code I found, not sure if it is totally complete and ready for porting.

    seal of right if aoe
    i
    Code:
    f PQ_AOESwitchState and not PQ_Buffs[PQ_SealOfRight].hasBuff then
      return true
    end
    seal of truth if not aoe
    Code:
    if PQ_AOESwitchState then
      return false
    end
    		
    if not PQ_Buffs[PQ_SealOfTruth].hasBuff then
       return true
    end
    Divine storm w/ aoe switch
    Code:
    if PQ_AOESwitchState then
      return true
    end
    Crusader w/aoe switch
    Code:
    if PQ_AOESwitchState then
      return false
    end
    
    if IsSpellInRange("Crusader Strike", "target")  ~= 1 then
    	return false
    end
    
    if PQ_HolyPower < 3  then
    	return true
    end
    edit: you could just put the pause on the shift button and move aoe switching to left ctrl, would be much easier than all this code.

    edit2: rest of code i think

    function events:MODIFIER_STATE_CHANGED(...)
    --Change state on key release since people could hold key down so tap to change state
    local key, state = ...

    if key == 'LCTRL' and state == 0 then

    if PQ_AOESwitchState then
    PQ_AOESwitchState = nil
    print('Rotation mode: \124cFFDBFA2ASingle target')
    else
    PQ_AOESwitchState = 1
    print('Rotation mode: \124cFFFA652AArea of Effect')
    end
    end

    end
    function PQ_Init()

    PQ_AOESwitchState = nil
    print(&amp;apos;Rotation mode: \124cFFDBFA2ASingle target&amp;apos
    PQ_HolyPower = UnitPower(&amp;apos;player&amp;apos;, 9)

    PQ_CheckForAllBuffs()

    end
    Last edited by averykey; 01-19-2012 at 12:07 PM.

  11. #4391
    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 Crunch140 View Post
    Onya,
    Thanks. I think this is my first time posting here, but I've been using your old profile for awhile. Thank you for everything.

    Suggestions:
    Remove the hex function. How often do we hex in raids? Having other focus options instead would be really cool.

    Assign the lightning spam to the focus, at the bottom of the priority list. I find myself using the profile in raids, then turning it off to target something, and work on getting mana back. Having it do it automatically on focus target would be killer!

    Oh oh, or a function to refresh Earth on the tank via focus, and even maybe prioritize heals on focus.


    Regardless, can't wait to try the latest profile. thanks again!
    onya shaman resto2 20012012.zip

    fixed major chain heal bug, removed hex from default rotation

    hold down ctrl for healing rain on cursor

    in combat hold down shift to spam lightning bolt instead of healing to get back mana via telluric currents. lightning bolt priority is focus - target - tanks target

    out of combat hold down shift to continue healing

    earthshield will go on focus, if no focus set it will go on a tank who has aggro.

    i agree that a toggleable "tank mode" where you only heal target and focus or say units with thier role set to tank could be useful, i may implement it later.

  12. #4392
    ishtro's Avatar Master Sergeant
    Reputation
    36
    Join Date
    Jul 2010
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    Hey guys!
    Been laying sick, so I haven't really been thinking about posting up my "updated" Shadow Priest profile with the leveling profile yet.

    Should find some time to do it today after classes have settled all though I do have to stress that I'm working on making sure that the dots respectively, refreshes whenever you gain an intellect proc, and refresh whenever the intellect proc is about to go out, to get the maximum time possible with enhanced dot damage.


    One other thing I was thinking about; I haven't been able to find the Spell ID's for Heroic Ultraxion's Fading Light and Hour of Twilight, using the code originally from Xelper at the moment, so I'm just wondering if you guys have gotten anything yet? (I'm currently clicking Heroic Will manually when we kill Ultraxion Heroic.)

    Spesifically, I'm interested in the 10 & 25 Heroic spell ID's. I realize that I haven't been looking the 40-new pages with posts just yet, but I'll get to that, and if Xelper's code-block also works for Heroic mode, then excuse me!

    ~ Mentally

    Edit:
    Would something like this probably work? Fading Light Spell ID's were all over wowhead, so I'm not sure which to use;

    Code:
    -- Avoid Fading Light
    local FadingLight = select(7,UnitDebuffID("player",110069)) -- LFR
    	or select(7,UnitDebuffID("player",109075)) -- Normal 10
    	or select(7,UnitDebuffID("player",105925)) -- Normal 10
    	or select(7,UnitDebuffID("player",110069)) -- Heroic 10
    	or select(7,UnitDebuffID("player",110079)) -- Heroic 10
    	or select(7,UnitDebuffID("player",110070)) -- Normal 25
    	or select(7,UnitDebuffID("player",110080)) -- Normal 25
    	or select(7,UnitDebuffID("player",110078)) -- Heroic 25
    	or select(7,UnitDebuffID("player",110068)) -- Heroic 25
    if FadingLight and FadingLight - GetTime() < 0.5 then RunMacroText("/click ExtraActionButton1") end
    
    -- Let's halt everything if Left Shift is held down.
    if not IsLeftShiftKeyDown() then
    	-- Avoid Hour of Twilight
    	local HoT,_,_,_,_,timer = UnitCastingInfo("boss1")
    	if HoT == (GetSpellInfo(109415) -- LFR
    		or GetSpellInfo(106371) -- Normal 10
    		or GetspellInfo(109416) -- Heroic 10
    		or GetSpellInfo(109415) -- Normal 25
    		or GetSpellInfo(109417) -- Heroic 25)
    		and timer/1000 - GetTime() < 0.5
    	then RunMacroText("/click ExtraActionButton1") end
    end
    Basically an all-in-one ability from all sizes and difficulties from Raid Finder to 25man Heroic, with automatic use on Heroic Will on Hour of Twilight being controlled by Left Shift.
    you could try this. just edit the time you want..

    Code:
    -- Avoid sudden death on Ultraxion
    local fadingtime = select(7,UnitDebuff("player","Fading Light"))
    if fadingtime and fadingtime - GetTime() < 1.3 then RunMacroText("/click ExtraActionButton1") end 
    
    -- Avoid Hour of Twilight on Ultraxion, Delete next 3 lines if you are working as tank
    local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
    if channelSpell == GetSpellInfo("Hour of Twilight") and endTime/1000 - GetTime() < 1.3 
    then RunMacroText("/click ExtraActionButton1") end

  13. #4393
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Revive Pet / Call Pet ability:
    Code:
    local a = 0
    
    if UnitIsDeadOrGhost("pet") then
    	a = 5
    end
    if not PQR_IsMoving(1) and a == 5 then
    	CastSpellByID(982,"player")
    end
    if a == 0 and not UnitExists("pet") then
    	CastSpellByID(883,"player")
    end
    Omg finally did it, ufff. If someone can confirm it working all time :P
    CastSpellByID(883,"player") it is for SLOT1 PET

  14. #4394
    sgdevoid's Avatar Sergeant
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have something in the works that many of you may find useful. I'll keep you all posted.

  15. #4395
    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 vorn10 View Post
    Hmm iam trying to write something that will automat pet revive/call. But what i try to do nothing works fine. Lets say our pet is dismissed so it will try to spam revive which will fail and dont know how to check that was failed cast and cast call pet if revive wasnt casted.
    Same as if pet is dead, it will try to call him and will spam it for ages and here too dont know how to check if call was failed so then cast revive.
    This happening cuz when pet is dead for longer time, it frame gone, so we dont know if it is dead or dismissed.
    Only thing working is instantly cast revive after pet died or
    if pet not exist cast call pet while moving or if pet not exist cast revive while not moving. But here too is same error, if pet is dead and i will be in move it will spam Call Pet. If pet is dismissed and we dont move it will spam revive pet. :S
    Hope u know what i mean.
    Was trying something like that (try it while ur pet is dismissed, it will just try to cast revive :S):
    Code:
    local re = UnitCastingInfo("player")
    
    if not UnitExists("pet") or UnitIsDead("pet") then
    	if CastSpellByID(982) and re ~= "Revive Pet" then
    		CastSpellByID(883)
    	end
    end
    I never learn programming so maybe this is easy problem. No idea.
    hmm it trying to execute "CastSpellByID(982)" looks like it doing only this and doesnt checking anything more.
    It seems to me that you could just have the old all in one pet macro in the macro part of the ability in question. Then all you would need to do is set a condition when it should attempt to execute the all in one macro.

    Code:
    This will revive your pet if it's dead, call your pet if you don't have him out, or mend your pet.
    
    /cast [mod]Revive Pet; [@pet,dead]Revive Pet; [nopet]Call Pet 1; Mend Pet
    
    If your dead pet is out of range (i.e. cannot be found by the target command), you can hold down any modifier to force Revive Pet.

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 12:39 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