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

Shout-Out

User Tag List

Page 423 of 731 FirstFirst ... 323373419420421422423424425426427473523 ... LastLast
Results 6,331 to 6,345 of 10955
  1. #6331
    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)
    @boss using your 7.0 release, haven't looked at 7.1... but you don't have a GetCurrentKeyBoardFocus() == nil check on your AoE swap fyi

    with that it will see if there's currently something grabbing the cursor (IE, chat box) and if it is, it wont keep swapping to AoE and back as some1 is typing
    ^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. #6332
    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)
    Spell Reflect Code (UPDATED)

    Name: Spell Reflect
    SpellID: 0
    Target: Player
    LUA Code:
    Code:
    local ReflectID = { 
    	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
    
    for _, reflectID in ipairs(ReflectID) do
    	for i=1, 5 do
    		local aTarget = "arena"..tostring(i)
    		local inRange = IsSpellInRange(tostring(GetSpellInfo(57755)), aTarget)
    		if UnitExists(aTarget) and inRange == 1 then
    			if UnitCastingInfo(aTarget) == GetSpellInfo(reflectID) then
    				if GetSpellCooldown(23920) == 0 then
    					local stance = GetShapeshiftForm()
    					if UnitPower("player") > 15 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
    	if UnitExists("focus") then
    		if UnitCastingInfo("focus") == GetSpellInfo(reflectID) then
    			if GetSpellCooldown(23920) == 0 then
    				local stance = GetShapeshiftForm()
    				if UnitPower("player") > 15 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
    	if UnitExists("target") then
    		if UnitCastingInfo("target") == GetSpellInfo(reflectID) then
    			if GetSpellCooldown(23920) == 0 then
    				local stance = GetShapeshiftForm()
    				if UnitPower("player") > 15 then
    					if stance == 1 or stance == 2 then
    						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 Earthly Sundering")
    			return true
    		elseif UnitCastingInfo(CastingTarget) then
    			CastSpellByID(23920, "player")
    			return true
    		end
    	elseif not IsEquippedItemType("Shields") then
    		if UnitCastingInfo(CastingTarget) then
    			RunMacroText("/equip Riftrent Waraxe")
    			RunMacroText("/equip Catapult Loading Scoop")
    			return true
    		elseif not UnitCastingInfo(CastingTarget) then
    			spellReflect = nil
    		end
    	end
    elseif IsEquippedItemType("Shields") then
    	spellReflect = nil
    	RunMacroText("/equip Axe of Earthly Sundering")
    	return true
    end
    swap red with your shield set or 2 handers...... same as other spell reflect.... but this one SHOULD be stronger if it works.... i have no means of testing this right now so please some1 test if for me ty!!!!!

    edit, i know this looks like a lot, but this is seriously just a base code, if this works I'll be building on this to make it epic

    *edit edit*
    for the record i have no way of testing this so a speedy answer makes for quicker fixes
    Last edited by bu_ba_911; 02-23-2012 at 12:00 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  3. #6333
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kinda a random question but would it be possible if someone had extensive lua knowledge could they code a settings gui into a rotation to select for example if they have the hemo glyph, or a beacon target from a drop down menu?

  4. #6334
    byterj's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any good rogue combat profile?

  5. #6335
    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 travis2861 View Post
    Kinda a random question but would it be possible if someone had extensive lua knowledge could they code a settings gui into a rotation to select for example if they have the hemo glyph, or a beacon target from a drop down menu?
    well it's actually easy to just check the glyphs with an API call to see if you have Hemo.... and it's not that hard to manually select a Beacon Target...

    What I want to try and do is create a GUI for manually selecting variables, like Healing at which percent for what heals... Give the user more power over their mana management... If you are more geared you would want the values lower, less gear, higher. But so far stuck in a rut, but with a couple ideas in the works lol.... This is the main pause on my WIP Holy Rotation
    ^0^Team Nova's PQR NCC ^0^

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

  6. #6336
    bestdamnwarrior's Avatar Master Sergeant
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    110
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Boss,

    I, like many others would love to see an Arms PvP profile with your coding genius. I know you don't PvP, I do and would be happy to help you with this. I have 2-3 different PvP Arms profiles that I can share with you to get you on the right track with the kind of abilities PvP warriors use and the types of offensive and defensive things that will need to be utilized by the profile. If you're interested in working with someone on creating a really kick ass PvP warrior profile, let me know and I'll share the profiles I have with you and we can coordinate a really nice one I bet.

    Let me know,

    BDW

  7. #6337
    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)
    @best feel like being a guinea pig? need some1 to test Spell Reflect lol..... after i get spell reflect working, rewriting Disarm as well.....
    ^0^Team Nova's PQR NCC ^0^

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

  8. #6338
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    Thanks for that post!
    I rewrote most of the Code and i'll release a better Version the within the next days
    just found out that it's the hemo/ backstab typo , change isbehind to isBehind fixed the problem

  9. #6339
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    well it's actually easy to just check the glyphs with an API call to see if you have Hemo.... and it's not that hard to manually select a Beacon Target...

    What I want to try and do is create a GUI for manually selecting variables, like Healing at which percent for what heals... Give the user more power over their mana management... If you are more geared you would want the values lower, less gear, higher. But so far stuck in a rut, but with a couple ideas in the works lol.... This is the main pause on my WIP Holy Rotation
    Tried your Svn holy pally but i keep getting a lua error.

  10. #6340
    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 saga3180 View Post
    Tried your Svn holy pally but i keep getting a lua error.
    are you currently in an Aura?

    if you are post your error
    ^0^Team Nova's PQR NCC ^0^

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

  11. #6341
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cukiemunster View Post
    Anyone have a current Frost mage PVE profile? The one linked on the OP does not use Deep Freeze/pet freeze and is extremely inefficient with spell cast/priority. I have searched this thread and the only profiles I seem to find are DK frost, not mage. TY for whoever helps me out with this =P
    Originally Posted by cukiemunster View Post
    If I wanted to add coding to any profile to use the button for Fading light(normal and heroic), Hour of Twilight, and Shrapnel on DW, would the code look something like this, and where exactly would I put it? I am still new to PQR and coding:

    local fadingtime = select(7,UnitDebuffID("player",109075)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end
    local fadingtime = select(7,UnitDebuffID("player",110070)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end
    local fadingtime = select(7,UnitDebuffID("player",110140)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end
    local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1") if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() < 0.6 then RunMacroText("/click ExtraActionButton1") end


    And would it matter if it actually put in just like this, or does it need to be all one line, like this:

    local fadingtime = select(7,UnitDebuffID("player",109075)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end local fadingtime = select(7,UnitDebuffID("player",110070)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end local fadingtime = select(7,UnitDebuffID("player",110140)) if fadingtime and fadingtime - GetTime() < 1.0 then RunMacroText("/click ExtraActionButton1") end local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1") if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() < 0.6 then RunMacroText("/click ExtraActionButton1") end


    Bump for these questions I still have

  12. #6342
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    are you currently in an Aura?

    if you are post your error

    No i wasnt in any aura
    I cant copy the lua error from wow


    there it is
    Message: [string " function pqrFunc0() if not functions then..."]:248: attempt to perform arithmetic on a nil value
    Time: 02/22/12 22:34:33
    Count: 103
    Stack: [C]: ?
    [string " function pqrFunc0() if not functions then..."]:248: in function `?'
    [string "..."]:255: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>

    Locals:
    Last edited by saga3180; 02-23-2012 at 01:36 AM.

  13. #6343
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ishtro View Post
    here is my Glyph script if you would like to use it..

    Code:
    function Glyph(ID)
    	for i =1,NUM_GLYPH_SLOTS do
    		if select(4,GetGlyphSocketInfo(i)) == ID then
    			return true
    		end
    	end	
    	return false
    end
    example

    Code:
    if check("Sunder Armor") and sunder then
    	if not (debuff("Faerie Fire") or debuff("Expose Armor")) then
    		if not hasdbuff("Sunder Armor") then
    			cast("Sunder Armor") return true 
    		end
    	else
    		if not Glyph(89003) and dbstack("Sunder Armor") < 3 then
    			cast("Sunder Armor") return true 
    		end
    	end
    end
    I already have a code like that, but this won't work if your in your Combt Specc f.e. when you activate the rotation.
    Code:
    local enabled, _, _, GlyphID = GetGlyphSocketInfo(   i , specNum )
    SpecNum should be 1 or 2 if you have two speccs, so you can loop through the glyphs in your off and active specc, but for 1 and 2 the output is the same -> Glyphs of your active Specc

  14. #6344
    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)
    Originally Posted by cukiemunster View Post
    Bump for these questions I still have
    Answer is no, there is no pve frost profile. Why should their be? Got arcane and fire the only viable pve specs.

  15. #6345
    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)
    Originally Posted by Bossqwerty View Post
    Haha, yeah sorry about that. I don't know exactly which ability it's in. Just go through each one and check the "perform after lua" tab and erase it when you find it.
    I know you started off his original profile that had some pvp abilities in it. If you guys could find a way to combine the SD profile with Bubba's pvp abilities (spell reflect works great btw) it would be one hell of a pvp profile. (Was just informed that could be a bad idea to be in berserker stance due to increase of damage taken.
    Last edited by Meatglue; 02-23-2012 at 02:34 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 05:13 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