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

Shout-Out

User Tag List

Page 329 of 731 FirstFirst ... 229279325326327328329330331332333379429 ... LastLast
Results 4,921 to 4,935 of 10955
  1. #4921
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    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
    lol that's sorta what i've been thinking, but im sure there's some way to optimize it more.... haven't there been people to release new Frost DK profiles since mine?
    Yeh there was some masterfrost rotations but I still prefer your one. At the moment its still working great. Only thing that I was thinking about adding myself is Dark Simulacrum, just for a few spells. Shattered Ice, I know can be copied from Hagara for example and hits for quite a bit. Many of the bosses in HoT have something that can be copied too. I know its very easy to do manually but I always seem to forget. : /

    [BETA] PQRotation - an automated ability priority queue.
  2. #4922
    Starphall's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anybody can help me...i want pqr the keep Flameshock on my focus when possible...thx for helping

  3. #4923
    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 Starphall View Post
    anybody can help me...i want pqr the keep Flameshock on my focus when possible...thx for helping
    - Open Flame Shock ability
    - Edit name and add something, by example "Flame Shock focus"
    - Change all places where you see "Target" to "Focus"
    - Click Save button
    - Go to rotation editor and add "Flame Shock focus" to your rotation

  4. #4924
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey sheuron i was hoping to use your shammy profile to lvl a shaman do you know of a code i can out into each spell to see if i have it and cast it? i tried looking to Mentally's coding but so far not coming up with anything that works

  5. #4925
    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 merrikh View Post
    hey sheuron i was hoping to use your shammy profile to lvl a shaman do you know of a code i can out into each spell to see if i have it and cast it? i tried looking to Mentally's coding but so far not coming up with anything that works
    The spells you don't have, you can always just remove them from the rotation, then add them back when you learn them.

  6. #4926
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    The spells you don't have, you can always just remove them from the rotation, then add them back when you learn them.
    yea i know just thought id ask anyway

  7. #4927
    Starphall's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    - Open Flame Shock ability
    - Edit name and add something, by example "Flame Shock focus"
    - Change all places where you see "Target" to "Focus"
    - Click Save button
    - Go to rotation editor and add "Flame Shock focus" to your rotation
    thx alot...ive already did all the...just forgot to add it to the rotation ahah...thx
    can i add something that check if FS is up before casting Lvb ?

  8. #4928
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Buba

    Hey mate,got a bit enchanced code for your StopCast

    Code:
    local SpellInfo, _, _, _, _, endCast = UnitCastingInfo("player") 
    local HL = GetSpellInfo(635) 
    local DL = GetSpellInfo(82326) 
    local FL = GetSpellInfo(19750) 
    local HR = GetSpellInfo(82327)  
    
    if PQR_CustomTargetHP > 96 then 	
    	if SpellInfo == HL or Spell == DL or Spell == FL then 
    		SpellStopCasting()
    	end 
    elseif lowhpmembers < 3 and SpellInfo == HR then
    	if endCast/1000 - GetTime() > 1.0 then
    		SpellStopCasting()
    	end
    end
    
    if (PQR_CustomTargetHP < 40 or (lowhpmembers >= 5 and PQR_CustomTargetHP > 40)) and SpellInfo == HL and (endCast/1000 - GetTime()) > 1.2 or PQR_CustomTargetHP < 20 then
    	SpellStopCasting()
    end
    Just some logic enchancements + localization issues.

    What do u think about it?
    Last edited by Valma; 01-30-2012 at 02:03 AM.

  9. #4929
    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)
    Any pvp profiles in works for enh shaman Sheuron?

  10. #4930
    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 Valma View Post
    @Buba

    Hey mate,got a bit enchanced code for your StopCast

    Code:
    local SpellInfo, _, _, _, _, endCast = UnitCastingInfo("player") 
    local HL = GetSpellInfo(635) 
    local DL = GetSpellInfo(82326) 
    local FL = GetSpellInfo(19750) 
    local HR = GetSpellInfo(82327)  
    
    if PQR_CustomTargetHP > 96 then 	
    	if SpellInfo == HL or Spell == DL or Spell == FL then 
    		SpellStopCasting()
    	end 
    elseif lowhpmembers < 3 and SpellInfo == HR then
    	if endCast/1000 - GetTime() > 1.0 then
    		SpellStopCasting()
    	end
    end
    
    if (PQR_CustomTargetHP < 40 or (lowhpmembers >= 5 and PQR_CustomTargetHP > 40)) and SpellInfo == HL and (endCast/1000 - GetTime()) > 1.2 or PQR_CustomTargetHP < 20 then
    	SpellStopCasting()
    end
    Just some logic enchancements + localization issues.

    What do u think about it?
    i agree on the localization part, i was already starting the move in my code towards that, but i disagree with the change to check on HL when there are 5 people that need healing AND the target to be healed is over 40%..... that just doesn't seem the most logical way to handle that

    did update my code though
    ^0^Team Nova's PQR NCC ^0^

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

  11. #4931
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    i agree on the localization part, i was already starting the move in my code towards that, but i disagree with the change to check on HL when there are 5 people that need healing AND the target to be healed is over 40%..... that just doesn't seem the most logical way to handle that

    did update my code though
    The logic is here:

    You got for example 1 person at 60%(let's say tank) when u started to cast HL,then comes AoE and if tank still have more HP then 40%(not critical ammount) casting HR will be more profitable without risking tanks life(in most cases).

  12. #4932
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any epic blood dk rotations suitable for running 5 mans, assuming user controlled cd's?

  13. #4933
    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 Valma View Post
    The logic is here:

    You got for example 1 person at 60%(let's say tank) when u started to cast HL,then comes AoE and if tank still have more HP then 40%(not critical ammount) casting HR will be more profitable without risking tanks life(in most cases).
    counter-argument, if he ever does reach under 40% (critical amount), we would WANT to stop casting HL to cast something more beneficial, like Flash of Light or Divine Light, and those spells have priority over HR, thought i may be changing their logic in order to make them a bit smarter at that
    ^0^Team Nova's PQR NCC ^0^

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

  14. #4934
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    counter-argument, if he ever does reach under 40% (critical amount), we would WANT to stop casting HL to cast something more beneficial, like Flash of Light or Divine Light, and those spells have priority over HR, thought i may be changing their logic in order to make them a bit smarter at that
    This has nothing to do with stop casting logic,it's just priority logic.As for 40% now I agree with you after thinking about it a bit,but still we need this:

    Code:
    if (PQR_CustomTargetHP < 40 or lowhpmembers >= 5) and SpellInfo == HL and (endCast/1000 - GetTime()) > 1.2 or (PQR_CustomTargetHP < 20 and (SpellInfo ~= DL or SpellInfo ~= FL)) then
    	SpellStopCasting()
    end
    Main idea is the last part,it do exactly what you stated: if target is at REALLY critical point it will stopcast to LoH,WoG,FoL,DL it.

  15. #4935
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Some rework for your Beacon code.

    It casts beacon on your mouseover for first time,then it saves target name and party/raid index and autorecasts beacon on saved target.It even checks if in some case target was swapped with someone in raid or not in raid(by name) and if it was some kind of swap it finds target and resaves index.

    CastAndForget Beacon code:
    Code:
    <Ability><Name>Beacon (Right Alt)</Name><Default>false</Default><SpellID>53563</SpellID><Actions></Actions>
    <Lua>
    local hasMouseover = UnitExists(&amp;quot;mouseover&amp;quot;)
    local mouseoverFriend = UnitIsFriend(&amp;quot;player&amp;quot;, &amp;quot;mouseover&amp;quot;)
    local group = &amp;quot;party&amp;quot;
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() &amp;gt; 0 then group = &amp;quot;raid&amp;quot; members = GetNumRaidMembers() end
    
    if IsRightAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
    	if hasMouseover and mouseoverFriend then
    		local name = UnitName("mouseover")
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        			if name == UnitName(member)  then
        				PQ_BeaconTarget = member
        				PQ_BeaconTargetName = name
        				PQR_CustomTarget = PQ_BeaconTarget
        				return true
        			end
    		end 
    	 end
    end
    
    if PQ_BeaconTarget then
    	local Beacon = UnitBuffID(PQ_BeaconTarget, 53563)
    	local BeaconExpire = select(7,UnitBuffID(PQ_BeaconTarget, 53563)) - GetTime()
    
    	if UnitName(PQ_BeaconTarget) == PQ_BeaconTargetName then	
    		if Beacon then
    			if BeaconExpire &amp;lt; 10 then
    				PQR_CustomTarget = PQ_BeaconTarget
    				return true
    			end
    		else 
    			PQR_CustomTarget = PQ_BeaconTarget
    			return true		
    		end
    	else
    		for i = 1, members, 1 do
    			local member = group..tostring(i)
        			if PQ_BeaconTargetName == UnitName(member)  then
        				PQ_BeaconTarget = member
        				PQR_CustomTarget = PQ_BeaconTarget
        				return true
        			end
          		end		
    	end
    end	
    </Lua>
    <RecastDelay>500</RecastDelay><Target>Custom</Target><CancelChannel>False</CancelChannel><LuaBefore></LuaBefore><LuaAfter></LuaAfter></Ability>
    Untested,coz I'm coding from work and u know,I can't play WoW from work QQ
    Last edited by Valma; 01-30-2012 at 05:30 AM.

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