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

User Tag List

Page 115 of 731 FirstFirst ... 1565111112113114115116117118119165215615 ... LastLast
Results 1,711 to 1,725 of 10955
  1. #1711
    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)
    Sheuron, awesome job on the rogue profile specifically as that is what I am leveling. Any chance of adding a pvp profile?

    [BETA] PQRotation - an automated ability priority queue.
  2. #1712
    illegalpacket's Avatar Private
    Reputation
    6
    Join Date
    Jun 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gonna try this now looks pro

  3. #1713
    itsmex3's Avatar Private
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is amazing

  4. #1714
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wow sheuron hunter is almost like a turret now!! lmao very nice my dps incresed substantially

  5. #1715
    brole93's Avatar Private
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Helped my dps out alot

  6. #1716
    jwkon's Avatar Private
    Reputation
    2
    Join Date
    Sep 2011
    Posts
    4
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Had trouble figuring it out but was worth it

  7. #1717
    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)
    Mkay.... Completely changed the healing style of the Paladin....

    this is a huge release only because it has all of the old targeting style heals (Used in PvP Holy)
    but it also has all of the new targeting style heals (Used in Test)

    try them both out, let me know which one you guys like best, or if i should keep both in and just edit them as i see fit

    ----------------download--------------
    http://www.mediafire.com/?4fje0snd51s50j3

    going to be editing my main holy paly post as well with more updates about what all changed and how to use it

    Remember Test is a full scale rotation using the Sheuron's Holy Priest targeting system. You don't physically target the player, but it heals in almsot the same way as if you did

    focus heals on Mouseover and Targetted player

    Targetted > Mouseover > No Mouseover or Friendly Player Targetted
    Last edited by bu_ba_911; 09-25-2011 at 11:12 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  8. #1718
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Mkay.... Completely changed the healing style of the Paladin....

    this is a huge release only because it has all of the old targeting style heals (Used in PvP Holy)
    but it also has all of the new targeting style heals (Used in Test)

    try them both out, let me know which one you guys like best, or if i should keep both in and just edit them as i see fit

    ----------------download--------------
    PvP_Holy_Paladin_BETAv2.1_RELAESE.zip

    going to be editing my main holy paly post as well with more updates about what all changed and how to use it

    Remember Test is a full scale rotation using the Sheuron's Holy Priest targeting system. You don't physically target the player, but it heals in almsot the same way as if you did

    focus heals on Mouseover and Targetted player

    Targetted > Mouseover > No Mouseover or Friendly Player Targetted
    Uploaded the rotation as a .txt file it seems?

  9. #1719
    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 xLegendx View Post
    Uploaded the rotation as a .txt file it seems?

    YEA IM SORRY

    was alerted to the problem 3 minutes ago haha FIXED

    MY BAD
    ^0^Team Nova's PQR NCC ^0^

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

  10. #1720
    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)

    cleanse code

    here's some cleansebot code. replace the castspellbyid code with your classes cleanse spell if you're not a shaman. the comma separated list of things at the top is debuffs which when present you won't cleanse.

    Code:
    buff = { 96328, 96325, 96326, 92876, 92877, 92878, 86788, 30108 }
    local group = "party"
    local members = GetNumPartyMembers()
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 0, members, 1 do
      if i==0 then member = "player" else local member = group..tostring(i) end
      if UnitInRange(member) and UnitIsDeadOrGhost(member) == nil then
       local candispel = 1
       for k,v in ipairs(buff) do
        if UnitDebuffID(member,v) then candispel = nil end
       end
       local j = 1
       local debuff,_,_,count,bufftype,dur = UnitDebuff(member, j)
       while debuff do
        if ((bufftype == "Magic") or (bufftype == "Curse")) and dur > 1 and candispel then
         CastSpellByID(51886 ,member)
         return true
        end
        j = j + 1;
        debuff,_,_,count,bufftype,duration = UnitDebuff(member, j)
        end
      end
    end

  11. #1721
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  12. #1722
    R4g4t0kk's Avatar Member
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What have I done wrong, what is the reason this does not work?

    Code:
    local TC, _, _, _, _, _, timera = UnitDebuffID("target", 6343)
    local WL, _, _, _, _, _, timerb = UnitDebuffID("target", 51696)
    local JG, _, _, _, _, _, timerc = UnitDebuffID("target", 53696)
    local IF, _, _, _, _, _, timerd = UnitDebuffID("target", 48484)
    local IT, _, _, _, _, _, timere = UnitDebuffID("target", 45477)
    local ES, _, _, _, _, _, timerf = UnitDebuffID("target", 8042)
    local TS, _, _, _, _, _, timerg = UnitDebuffID("target", 90314)
    local DC, _, _, _, _, _, timerh = UnitDebuffID("target", 50285)
    
    if TC ~= nil then
    	if timera - GetTime() < 2.5 then
    		return true
    	end
    else
    	if WL ~= nil then
    		if timerb - GetTime() < 2.5 then
    			return true
    		end
    	else
    		if JG ~= nil then
    			if timerc - GetTime() < 2.5 then
    				return true
    			end
    		else
    			if IF ~= nil then
    				if timerd - GetTime() < 2.5 then
    					return true
    				end
    			else
    				if IT ~= nil then
    					if timere - GetTime() < 2.5 then
    						return true
    					end
    				else
    					if ES ~= nil then
    						if timerf - GetTime() < 2.5 then
    							return true
    						end
    					else
    						if TS ~= nil then
    							if timerg - GetTime() < 2.5 then
    								return true
    							end
    						else
    							if DC ~= nil then
    								if timerh - GetTime() < 2.5 then
    									return true
    								end
    							else
    								return true
    							end
    						end
    					end
    				end
    			end
    		end
    	end
    end
    Last edited by R4g4t0kk; 09-26-2011 at 10:33 AM.

  13. #1723
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    yea saw that too... but the part i like is him saying that he does better dps them program...lol big deal and?..btw hes ussing it becouse he also said that he lost the ability to play his toon so .. hes a little troll that let PQR do everithing for him and the day his profile doest get a update he will quit wow ...

    lol at that guy

  14. #1724
    Pille0214's Avatar Member
    Reputation
    1
    Join Date
    Jul 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any Chance to get a Resto Druid Profil?! greets

  15. #1725
    Progod's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    22
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great application i love it
    Nice to have for those times where you don't want to concentrate 100% like heroics and leveling.

    Was a list of PQR functions compiled? as I have tried to read all the pages and know it was requested but I may have missed it.

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 04:48 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