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

Shout-Out

User Tag List

Page 534 of 731 FirstFirst ... 34434484530531532533534535536537538584634 ... LastLast
Results 7,996 to 8,010 of 10955
  1. #7996
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by leonel916 View Post
    Im still trying to find a Paladin Prot profile which i cant seem to find anywhere. I looked in the wiki page and i only see holy, ret. and some ret/prot one but no download link?
    xelper has one, tho pretty sure it used to be included in the release tho isn't anymore i think

    xelperprot.rar

    hope he doesn't mind me re uploading for you

    [BETA] PQRotation - an automated ability priority queue.
  2. #7997
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by brandonedm0nds View Post
    Was Wondering if someone could point me in the direction of an updated/good fury Profile?
    Free Cloud Storage - MediaFire

    boss' profiles and sheuron and bu_ba have some as well

  3. #7998
    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)
    Originally Posted by noah11213 View Post
    Really wanting to try this, however I'm getting "Unable to load rotation/ability list. The XML is not well-formed." Any idea?
    Tried to remove the print using an editor but it failed. Please Try again

    http://dl.dropbox.com/u/68264153/Gabbz.rar

  4. #7999
    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)
    Here comes my code getting the ignite damage and if fireball critted:
    Code:
    if XelperDruidEvents == nil then
    	XelperDruidEvents = true
    	print("Mage Events Loaded.")
    
    	local xelperFrame = CreateFrame("Frame")
    	xelperFrame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    	xelperFrame:SetScript("OnEvent", xelperFrame_OnEvent)
    	xelperFrame:Show()
    
    end
    Code:
    if MageFunctions == nil then
    	MageFunctions = true
    	print("Mage Functions Loadeds.")
    
    	function xelperFrame_OnEvent(self,event,...)
    		if event == "COMBAT_LOG_EVENT_UNFILTERED" then
    			--print("Mage Functions Combatlog.")
    			local subEvent = select(2, ...)
    			local sourceName = select(5, ...)
    			local destName = select(9, ...)
    			local spellName = select(13, ...)
    			local spellAmount = select(15, ...)
    			local spellCrit = select(21, ...)
    			
    			if subEvent == "SPELL_PERIODIC_DAMAGE" then
    				--print("Mage Functions Periodic.")
    				if UnitName("player") == sourceName and destName == UnitName("target") then
    					if spellName == GetSpellInfo(12654) then  
    						IgniteLastDamage = spellAmount 
    						--print("Mage Functions Ignite. " ..IgniteLastDamage)
    					end
    				end
    			end
    			if subEvent == "SPELL_AURA_REMOVED" then
    				--print("Mage Functions Aura Removed.")
    				if UnitName("player") == sourceName then
    					if spellName == GetSpellInfo(12654) then  
    						IgniteLastDamage = 0 
    						--print("Mage Functions resetting ignite. ")
    					end
    				end
    			end
    			if subEvent == "SPELL_DAMAGE" then
    				--print("Mage Functions Damage.")
    				if UnitName("player") == sourceName and destName == UnitName("target") then
    					if spellName == GetSpellInfo(133) then  
    						Fireballdamage = spellAmount
    						if spellCrit == 1	then
    							FireballCrit = 1
    							--print("Mage Functions FireBall CRITTED. " ..Fireballdamage)
    						end
    					end
    				end
    			end
    		end
    	end
    end
    Code:
    if modkeytime == nil then modkeytime = 0 end
    if IsRightControlKeyDown() and GetTime() - modkeytime > 1  then
      modkeytime = GetTime()
      if modkeystate then 
        modkeystate = nil 
        print("Rotation mode: \124cFFDBFA2ASMANA")
      else 
        modkeystate = 1 
        print("Rotation mode: \124cFFFA652ABURN")
      end
    end
    then you can check in Pyroblast if fireball Critted like this:

    Code:
    local start, duration, enabled = GetSpellCooldown(11129);
    
    if not UnitChannelInfo("player") and FireballCrit == 1 then
    	if 	duration > 8 
    		or duration < 1 then
      			CastSpellByName(tostring(GetSpellInfo(92315)))
     			 --print("Mage Functions FireBall CRITTED. " ..Fireballdamage)
     			 return true
     	 end
     end
    And you can check combustion to be cast if you have a ignitedame thats higher then a certain number so we dont waste a combustion on 7K ignites.

    Code:
    local LB, _, _, _, _, _, LBtimer = UnitDebuffID("target", 44457, "player")
    local IGNITE, _, _, _, _, _, IGNITEtimer = UnitDebuffID("target",  12654, "player")
    
    if UnitHealth("target") > UnitHealthMax("player")*Pressure("target")
    and IgniteLastDamage > 15000 
    and modkeystate
    and UnitDebuffID("target", 92315,"PLAYER") 
    and UnitDebuffID("target", 44457,"PLAYER") 
    then
    	if IGNITE then
      		if IGNITEtimer - GetTime() >= 1 then 
       		return true end
     	 end
    end
    
    
    if UnitHealth("target") > UnitHealthMax("player")*Pressure("target")
    and IgniteLastDamage > 25000 
    and modkeystate
    then return true end
    I think the code can be better but its something to start. I have some code that can be changed etc.
    And remember to get this code working you need to set fireballcritt = 0 at top somewhere in rotation

    My code is based on Xelper and sheuron from start
    Last edited by Gabbz; 03-21-2012 at 01:45 AM.

  5. #8000
    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 bu_ba_911 View Post
    I have a simple question.....followed by a request....

    Simple Question.....: WHY ISN'T SHEURON A CONTRIBUTOR YET?!?!?!?!?!?!?!?!?!?!

    Request: Can more people rate my Pally Profile either by PM'ing me or with Issue Tracker alerting me to any issues you may have (or saying what you really like about it)?
    i havent been in the mood to play my pally for the past week or so. been playing on my rogue with Blinded's sub profile and loving it. Ill get on my pally tomorrow and test it in lfr.

  6. #8001
    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)
    Here comes my Volcanic Potion code:

    Code:
    local Pot = GetItemCount(58091)
    
    if Pot == nil or UnitDebuffID("player",57724) then
    	return false
    	else
    		if UnitBuffID("player", 2825) or UnitBuffID("player", 80353) then
    			RunMacroText("/use Volcanic Potion") 
    	end
    end

  7. #8002
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    Here comes my Volcanic Potion code:

    Code:
    local Pot = GetItemCount(58091)
    
    if Pot == nil or UnitDebuffID("player",57724) then
    	return false
    	else
    		if UnitBuffID("player", 2825) or UnitBuffID("player", 80353) then
    			RunMacroText("/use Volcanic Potion") 
    	end
    end
    Your code will only work with Time Warp, as you check for the Sated debuff, which will happen at the moment Bloodlust is casted. So it is an auto return false on Bloodlust.

  8. #8003
    ryannguyen's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone give me a good PvE Fire Mage profiles ? Thank you so much.

  9. #8004
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gabbz,
    This is the code I use on my rogue, it may help and give you some ideas.

    Code:
    local adrenaline_rush = UnitBuffID("player", 13750)
    local potion = 58145 --Potion of the Tol'vir
    
    if GetItemCount(potion) > 0 then
    	if GetItemCooldown(potion) == 0 then
    		if adrenaline_rush ~= nil then
    			UseItemByName(potion)
    		end
    	end
    end

  10. #8005
    diesall's Avatar Contributor
    Reputation
    198
    Join Date
    Jul 2011
    Posts
    210
    Thanks G/R
    1/47
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    PQInterface v2.0

    quick post for now will update later with images and more information

    General
    • powered by events sent directly from the bot itself
    • Completely redesigned interface
    • detailed tool-tips
    • all frames re-sizable with your mouse wheel
    • double click the remote to enable or disable the ability log
    • access options via minimap button, LDB plugin or blizzard interface options
    Ability Log
    • Keeps track of abilities cast by PQR
    • Start Time: records the time PQR started sending the ability.
    • Cast Time: records when WoW successfully casts the spell.


    *Profile Developers*

    PQInterface has a custom text field, that will in the appear in the remote if called. To use this feature in your ability use the following function:

    PQR_Event("PQR_Text",text[,fadeOut][,color])

    Arguments:
    • text - Text to be displayed in custom text field [string]
    • color - color of text in hex ie. 'FFFFFF', defaults to default color [string]
    • fadeOut - time in seconds until text fades out, defaults to not fading out [string]

    Download: PQInterface.7z



    Last edited by diesall; 03-21-2012 at 01:36 PM.

  11. #8006
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Beautiful, Diesall. Gonna test it for a bit

  12. #8007
    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)
    Anyone still interested in an updated Hpal/Ret PVP Profile and a completly overwritten lock PVP profile?

  13. #8008
    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 diesall View Post
    PQInterface v2.0

    quick post for now will update later with images and more information

    General
    • powered by events sent directly from the bot itself
    • Completely redesigned interface
    • detailed tool-tips
    • all frames re-sizable with your mouse wheel
    • double click the remote to enable or disable the ability log
    • access options via minimap button, LDB plugin or blizzard interface options
    Ability Log
    • Keeps track of abilities cast by PQR


    Download: PQInterface.7z
    I never got around to trying out the old version but will definetly being trying this out!! Rep+

  14. #8009
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cokx View Post
    Anyone still interested in an updated Hpal/Ret PVP Profile and a completly overwritten lock PVP profile?
    i realy need lock pvp profile if u can share

  15. #8010
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm actually curious to see how Bubba's Holy rewrite turns out, but I learned a lot about PVP abilities from looking through your profiles Cokx. I'm sure that the Ret players would love an updated profile, at least.

    Similarly, is there a need for an updated Unholy DK PvP profile? I saw Zemnexx around a couple days ago, but I'm not sure whether he's planning to redo his rotation or not. This is the first season I've exclusively played Unholy in high-level arena.

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 09:02 AM. 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