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

Shout-Out

User Tag List

Page 635 of 731 FirstFirst ... 135535585631632633634635636637638639685 ... LastLast
Results 9,511 to 9,525 of 10955
  1. #9511
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey.

    I have a question for Mentally (or Bubba)

    How can i make DnD to be cast on Mouseover ONLY WHEN, e.g. left alt is pressed? I always managed to edit the older profiles to do that, but im kinda lost in that new DnD code.

    Thanks in advance!!

    [BETA] PQRotation - an automated ability priority queue.
  2. #9512
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D1sc1pl1n3 View Post
    Hey.

    I have a question for Mentally (or Bubba)

    How can i make DnD to be cast on Mouseover ONLY WHEN, e.g. left alt is pressed? I always managed to edit the older profiles to do that, but im kinda lost in that new DnD code.

    Thanks in advance!!

    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil
    then
    CastSpellByName(tostring(GetSpellInfo(43265)))
    if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    return true
    end

    this code i got from imdasandmans profile works flawless
    Last edited by daveyboyuk; 04-11-2012 at 06:42 PM.

  3. #9513
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Was thinking about modifiers and keys used by profiles... Atm like all good profiles are using some modifiers... Many of us use custom keys due to other bindings we use...

    Xelper what do you think about making modifiers and key bindings in program itself? So like you code "key 1, 2, 3" and than profile makers use Key 1 2 3 etc in profile... So when profile is updated... we dont really need to modify anything and changing binding would go all through program itself, no code editting.

  4. #9514
    Nosyd's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any tutorial to setup this addon?
    I've searched pretty much everywhere, and reread the original post, but can't get this working.
    If it helps, I'm trying to set up a frost/unholy DK profile.

  5. #9515
    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 yourson View Post
    Was thinking about modifiers and keys used by profiles... Atm like all good profiles are using some modifiers... Many of us use custom keys due to other bindings we use...

    Xelper what do you think about making modifiers and key bindings in program itself? So like you code "key 1, 2, 3" and than profile makers use Key 1 2 3 etc in profile... So when profile is updated... we dont really need to modify anything and changing binding would go all through program itself, no code editting.
    I've been implementing cvars into all my profiles... Also been writing in the groundwork for the macros that can modify the cvars (check your personal macros ) with a simple edit these macros cab activate things inside the rotation :-)

    What this means is custom keybinds that go beyond just shift, alt, and control!

    Honestly I don't see a need for Xelper to do anything more than he has on this front

    -------
    And im assuming you needed the edit for unholy?

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

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

  6. #9516
    Clotic's Avatar Member Authenticator enabled
    Reputation
    11
    Join Date
    Jun 2010
    Posts
    200
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LF arena profile or bg. with spell reflection etc. tryed bubba and nova arms pvp nothing works...

    Code:
    if PQ_SpellReflect == false then
    	return false
    end
    
    local ReflectID = { 
    	5782, -- Fear
    	33786, -- Cyclone
    	28272, -- Pig Poly
    	118, -- Sheep Poly
    	61305, -- Cat Poly
    	61721, -- Rabbit Poly
    	61780, -- Turkey Poly
    	28271, -- Turtle Poly
    	51514, -- Hex
    	51505, -- Lava Burst
    	339, -- Entangling Roots
    	30451, -- Acrane Blast
    	605 -- Mind Control
    }
    local CastingTarget = nil
    local srCD = select(2, GetSpellCooldown(23920))
    
    -- Only try this bit of code if we have enough rage to cast Spell Reflection
    if UnitPower("player") > 15 then
    	for _, reflectID in ipairs(ReflectID) do
    		-- Checking Arena Target Frames 1-5
    		for i=1, 5 do
    			local aTarget = "arena"..tostring(i)
    			local ainRange = IsSpellInRange(GetSpellInfo(57755), aTarget)
    			if UnitExists(aTarget) and ainRange == 1 then
    				if UnitCastingInfo(aTarget) == GetSpellInfo(reflectID) then
    					local _, _, _, _, astartTimer, aendTimer = UnitCastingInfo(aTarget)
    					if srCD == 0 or UnitBuffID("player", 23920) then
    					local stance = GetShapeshiftForm()
    					if PercentCasted(astartTimer, aendTimer) >= 70 then
    						if stance == 1 or stance == 2 then
    							spellReflect = 1
    							CastingTarget = aTarget
    						else
    							CastSpellByID(2457, "player")
    							spellReflect = 1
    							CastingTarget = aTarget
    						end
    					end
    				end
    			end
    		end
    		end
    	end
    	
    	--Checking Focus Target Unitframe now
    	local finRange = IsSpellInRange(GetSpellInfo(57755), "focus")
    	if UnitExists("focus") and finRange == 1 then
    		if UnitCastingInfo("focus") == GetSpellInfo(reflectID) then
    			local _, _, _, _, fstartTimer, fendTimer = UnitCastingInfo("focus")
    			if srCD == 0 or UnitBuffID("player", 23920) then
    				local stance = GetShapeshiftForm()
    				if UnitPower("player") > 15 and PercentCasted(fstartTimer, fendTimer) >= 70  then
    					if stance == 1 or stance == 2 then
    						spellReflect = 1
    						CastingTarget = "focus"
    					else
    						CastSpellByID(2457, "player")
    						spellReflect = 1
    						CastingTarget = "focus"
    					end
    				end
    			end
    		end
    	end
    	local tinRange = IsSpellInRange(GetSpellInfo(57755), "target")
    	if UnitExists("target") and tinRange then
    		if UnitCastingInfo("target") == GetSpellInfo(reflectID) then
    			local _, _, _, _,  tstartTimer, tendTimer= UnitCastingInfo("target")
    			if srCD == 0 or UnitBuffID("player", 23920) then
    				local stance = GetShapeshiftForm()
    				local _, _, _, _, tstartTimer, tendTimer = UnitCastingInfo("target")
    				if UnitPower("player") > 15 and PercentCasted(tstartTimer, tendTimer) >= 70 then
    					if stance == 1 or stance == 2 then
    						print("NOW!!!!!")
    						spellReflect = 1
    						CastingTarget = "target"
    					else
    						CastSpellByID(2457, "player")
    						spellReflect = 1
    						CastingTarget = "target"
    					end
    				end
    			end
    		end
    	end
    end
    
    if spellReflect == 1 and CastingTarget then
    	if IsEquippedItemType("Shields") then
    		if UnitBuffID("player", 23920) and UnitCastingInfo(CastingTarget) then
    			return true
    		elseif not UnitCastingInfo(CastingTarget)  then
    			spellReflect = nil
    			RunMacroText("/equip Axe of the Tauren Chieftains")
    			return true
    		elseif UnitCastingInfo(CastingTarget) then
    			CastSpellByID(23920, "player")
    			return true
    		end
    	elseif not IsEquippedItemType("Shields") then
    		if UnitCastingInfo(CastingTarget) then
    			RunMacroText("/equip Souldrinker")
    			RunMacroText("/equip Currapted Carapace")
    			return true
    		elseif not UnitCastingInfo(CastingTarget) then
    			spellReflect = nil
    		end
    	end
    elseif IsEquippedItemType("Shields") then
    	spellReflect = nil
    	RunMacroText("/equip Axe of the Tauren Chieftains")
    	return true
    end
    other one bubba's
    Code:
    local DS = GetShapeshiftForm()
    local Disarm = UnitDebuffID("target", 676)
    local Spell,_,_,_,_,_,_,_,_ = UnitCastingInfo("target")
    local CD = GetSpellCooldown(23920)
    local AW = UnitBuffID("target", 31884)
    local UF = UnitBuffID("target", 49016)
    local B = UnitBuffID("target", 18499)
    local BL = UnitBuffID("target", 2825)
    local H = UnitBuffID("target", 32182)
    local SD = UnitBuffID("target", 51713)
    local PoF = UnitBuffID("target", 51271)
    local BF1 = UnitBuffID("target", 33702)
    local BF2 = UnitBuffID("target", 20572)
    local BF3 = UnitBuffID("target", 33697)
    local CoV = UnitBuffID("target", 99740)
    local R = UnitBuffID("target", 1719)
    local BS = UnitBuffID("target", 46924)
    local IV = UnitBuffID("target", 12472)
    
    if  AW ~= nil or UF ~= nil or B ~= nil or BL ~= nil or H ~= nil or SD ~= nil or PoF ~= nil or BF1 ~= nil or BF2 ~= nil or BF3~= nil or CoV ~= nil or R ~= nil or BS ~= nil or IV ~= nil then
    if DS ~= 2 and Disarm == nil then
    return true
    end
    end
    
    if Spell == ("Arcane Blast") or Spell == ("Cyclone") or Spell == ("Mind Control") or Spell == ("Polymorph") or Spell == ("Lava Burst") or Spell == ("Entangling Roots") or Spell == ("Hex") then
    if DS ~= 2 and CD == 0 then
    RunMacroText("/equip Souldrinker")
    RunMacroText("/equip Corrupted Carpace")
    return true
    end
    end
    
    
    local DS = GetShapeshiftForm()
    
    if DS ~= 1 then
    RunMacroText("/equip Axe of the Tauren Chieftains")
    return true
    end

  7. #9517
    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)
    Whoops bad phone bad soz
    Last edited by bu_ba_911; 04-11-2012 at 08:37 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  8. #9518
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally - Just wanted to let you know, I finally got around to trying your Shadow rotation (Standard, no 4pc) now that my priest isn't Disc/Disc and it is... amazing. Although I apparently forgot to reforge after I switched out my healing pieces for shadow gear, I'm very pleased with the results I'm getting. Looking at the item levels of people, I'm falling right where I should (I'd prolly do better with the right reforges). I'm very happy with the built-in auto-targeting!

    I was going to ask if it supposed to spam Devouring Plague whenever you're on the move, but I see in the comments it is. I'm still a little confused about why it would do this if the target already has the debuff, but obviously I don't know much/anything about shadow priests, so this is probably a dumb question, I was just curious.

  9. #9519
    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 jackus View Post
    sheuron: your disco priest porfiles is good, but sometimes it just stops, like in bgs and in arena.

    That profile need a code clean up. Too bad I didnt played arenas in a while.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  10. #9520
    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 a9058727 View Post
    I was going to ask if it supposed to spam Devouring Plague whenever you're on the move, but I see in the comments it is. I'm still a little confused about why it would do this if the target already has the debuff, but obviously I don't know much/anything about shadow priests, so this is probably a dumb question, I was just curious.
    Improved Devouring Plague - Spell - World of Warcraft
    Your Devouring Plague instantly deals damage equal to 15% of its total periodic effect.

  11. #9521
    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)
    Originally Posted by a9058727 View Post
    I was going to ask if it supposed to spam Devouring Plague whenever you're on the move, but I see in the comments it is. I'm still a little confused about why it would do this if the target already has the debuff, but obviously I don't know much/anything about shadow priests, so this is probably a dumb question, I was just curious.
    The talent Improved Devouring Plague delivers 30% of Devouring Plague's total damage immediately, making it a spammable (albeit expensive) spell for use on the move.

  12. #9522
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Argh, geez... today has not been my day... yeah, I'll just go /headdesk now.

  13. #9523
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    funny i've been /faceindesk all day. till tomorrow.

    Please if someone helped you donate rep to them.

  14. #9524
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally, I just started using your shadow standard rotation as well. Very nice except for when i press Left Alt to stop casting and Mind Sear. It keeps just doing the regular rotation. If it's something easy to fix just tell me i'm stupid....

  15. #9525
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by farnumdizzle View Post
    @Mentally, I just started using your shadow standard rotation as well. Very nice except for when i press Left Alt to stop casting and Mind Sear. It keeps just doing the regular rotation. If it's something easy to fix just tell me i'm stupid....
    make sure your not targeting with mouseover

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 06:48 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search