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

Shout-Out

User Tag List

Page 424 of 731 FirstFirst ... 324374420421422423424425426427428474524 ... LastLast
Results 6,346 to 6,360 of 10955
  1. #6346
    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 fluxflux View Post
    what iss the code for instant Dispersion? i want break all other spells and priorität number 1 is dispersion? with alt key?
    Code:
    Name: Dispersion
    Spell ID: 47585
    Cancel Channel: True
    
    if IsLeftAltKeyDown() then
    SpellStopCasting()
    return true
    end
    Give it a shot. This worked in my old profile, so hopefully it hasn't been broken by recent changes.

    [BETA] PQRotation - an automated ability priority queue.
  2. #6347
    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
    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:
    was hoping my question would lead to ur solution..... changing into an aura should fix it....
    ^0^Team Nova's PQR NCC ^0^

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

  3. #6348
    Dotdk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey quys i have a question can i use this scripts when i levl or only when i hit 85? I have a hunter paladin and warrior to levl. or do i need to do somfing special add new spells or ?
    And are there a script for a feral dps druid?

    Dotdk

  4. #6349
    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)
    since i got a good review on my Spell Reflect code, here's the Disarm code that should go along with it..... This one has even more of a chance of being buggy than Spell Reflect

    Spell Name: Disarm
    Spell ID: 676
    Target: Custom
    LUA Code:
    Code:
    local DisarmDebuffs = {31884, 59016, 18499, 2825, 32182, 2825, 32182, 51713, 51271, 33702, 20572, 33697, 99740, 1719, 46924, 12472 }
    local DisarmCD = GetSpellCooldown(676)
    local stance = GetShapeshiftForm()
    
    if DisarmCD == 0 then
    	for _, v in ipairs(DisarmDebuffs) do
    		for i = 1, 5 do
    			local aTarget = "arena"..tostring(i)
    			local ainRange = IsSpellInRange(676, aTarget)
    			if UnitExists(aTarget) and ainRange == 1 then
    				if UnitBuffID(aTarget, v) then
    					if stance == 2 then
    						PQR_CustomTarget = aTarget
    						return true
    					else
    						CastSpellByID(71, "player")
    						return true
    					end
    				end
    			end
    		end
    		local tinRange = IsSpellInRange(676, "target")
    		if UnitExists("target") and tinRange == 1 then
    			if UnitBuffID("target", v) then
    				if stance == 2 then
    					PQR_CustomTarget = "target"
    				return true
    				else
    					CastSpellByID(71, "player")
    					return true
    				end
    			end
    		end
    		local finRange = IsSpellInRange(676, "focus")
    		if UnitExists("target") and finRange == 1 then
    			if UnitBuffID("focus", v) then
    				if stance == 2 then
    					PQR_CustomTarget = "focus"
    					return true
    				else
    					CastSpellByID(71, "player")
    					return true
    				end
    			end
    		end
    	end
    elseif stance == 2  then
    	if select(5, GetTalentTabInfo(3)) < select(5, GetTalentTabInfo(1)) then
    		CastSpellByID(2457, "player")
    		return false
    	end
    end
    *edit*
    will anyone be able to test this and let me know if it worked or not?
    Last edited by bu_ba_911; 02-23-2012 at 03:28 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  5. #6350
    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)
    @Bu_Ba can u pls explain to me this code for counterspell?
    local InterruptSpells = { 635, 47540, 19750, 82326, 51505, 62809, 331, 77472, 48500, 8936, 5782 }

    if select(2, GetSpellCooldown(2139)) == 0 then
    for y=1, 5 do
    local aTarget = "arena"..tostring(y)
    if UnitExists(aTarget) and IsSpellInRange(tostring(GetSpellInfo(2139)), aTarget) == 1 then
    local spellName, _, _, _, _, endCast, _, _, canInterrupt = UnitCastingInfo(aTarget)
    for i, v in ipairs(InterruptSpells) do
    if GetSpellInfo(v) == spellName and canInterrupt == 1 then
    if (endCast/1000) - GetTime() < 0.5 then
    PQR_CustomTarget = aTarget
    return true
    end
    end
    end
    end
    end
    end

    this work for my target or for all ?

  6. #6351
    chazk87's Avatar Private
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does anyone have a link for disc pve or druid profiles?

  7. #6352
    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 chazk87 View Post
    does anyone have a link for disc pve or druid profiles?
    http://www.ownedcore.com/forums/worl...ml#post2149707 ([BETA] PQRotation - an automated ability priority queue.)

  8. #6353
    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)
    Code:
    local InterruptSpells = { 635, 47540, 19750, 82326, 51505, 62809, 331, 77472, 48500, 8936, 5782 }
    
    if select(2, GetSpellCooldown(2139)) == 0 then -- checks if Counterspell is off Cooldown
    	for y=1, 5 do
    		local aTarget = "arena"..tostring(y) -- sets our current target we're looking at to arena(1-5) [Only Works in Arena]
    		if UnitExists(aTarget) and IsSpellInRange(tostring(GetSpellInfo(2139)), aTarget) == 1 then -- Check is the Unit Frame Exists (Good for 2v2, 3v3, 5v5) [This only sees invisible people when the leave stealth]
    			local spellName, _, _, _, _, endCast, _, _, canInterrupt = UnitCastingInfo(aTarget)
    			for i, v in ipairs(InterruptSpells) do -- Now we start the list of what we're looking for on each target
    				if GetSpellInfo(v) == spellName and canInterrupt == 1 then -- We're checking that the spell the target is casting is on our list, and it's interrupt-able 
    					if (endCast/1000) - GetTime() < 0.5 then -- We cast is only when there's 1/2 a second left on their Cast (No very smart for Channels, but this is a beta code)
    						PQR_CustomTarget = aTarget -- Setting our Custom Target to our current target is all checks pan out
    						return true -- Casting the Spell [Make sure your Ability Target is set to Custom]
    					end
    				end
    			end
    		end
    	end
    end
    commented it.... this ONLY works in Arena
    ^0^Team Nova's PQR NCC ^0^

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

  9. #6354
    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 bu_ba_911 View Post
    Code:
    local InterruptSpells = { 635, 47540, 19750, 82326, 51505, 62809, 331, 77472, 48500, 8936, 5782 }
    
    if select(2, GetSpellCooldown(2139)) == 0 then -- checks if Counterspell is off Cooldown
    	for y=1, 5 do
    		local aTarget = "arena"..tostring(y) -- sets our current target we're looking at to arena(1-5) [Only Works in Arena]
    		if UnitExists(aTarget) and IsSpellInRange(tostring(GetSpellInfo(2139)), aTarget) == 1 then -- Check is the Unit Frame Exists (Good for 2v2, 3v3, 5v5) [This only sees invisible people when the leave stealth]
    			local spellName, _, _, _, _, endCast, _, _, canInterrupt = UnitCastingInfo(aTarget)
    			for i, v in ipairs(InterruptSpells) do -- Now we start the list of what we're looking for on each target
    				if GetSpellInfo(v) == spellName and canInterrupt == 1 then -- We're checking that the spell the target is casting is on our list, and it's interrupt-able 
    					if (endCast/1000) - GetTime() < 0.5 then -- We cast is only when there's 1/2 a second left on their Cast (No very smart for Channels, but this is a beta code)
    						PQR_CustomTarget = aTarget -- Setting our Custom Target to our current target is all checks pan out
    						return true -- Casting the Spell [Make sure your Ability Target is set to Custom]
    					end
    				end
    			end
    		end
    	end
    end
    commented it.... this ONLY works in Arena
    y i know this but work only for my target or for all?

  10. #6355
    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)
    it doesn't even look at your target... target doesn't matter

    so everyone in arena who is in range is who it should work against
    ^0^Team Nova's PQR NCC ^0^

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

  11. #6356
    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 bu_ba_911 View Post
    it doesn't even look at your target... target doesn't matter

    so everyone in arena who is in range is who it should work against
    Ok tnx alot this; i need to disable interruption?
    I need to create a new spell with CS ID with Target like COSTUM?
    And in what place generaly i need to put in the rotation list?
    +rep for this code
    Last edited by happydado; 02-23-2012 at 04:43 AM.

  12. #6357
    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 happydado View Post
    Ok tnx alot this; i need to disable interruption?
    I need to create a new spell with CS ID with Target like COSTUM?
    And in what place generaly i need to put in the rotation list?
    +rep for this code
    yes and yes, only for Arena

    and near the top of the rotation

    for the record this is untested, but i haven't seen an error through my read through.... i ahve missed things before though
    Last edited by bu_ba_911; 02-23-2012 at 04:50 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  13. #6358
    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 bu_ba_911 View Post
    yes and yes, only for Arena

    and near the top of the rotation

    for the record this is untested, but i haven't seen an error through my read through.... i ahve missed things before though
    in my profile i have defencive spell (iceblock icebarrier ecc.)and offencive spell; i need to put in defencive spell rigth?

  14. #6359
    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)
    i would make it it's own ability, and i would put it before any attacking move.... idk where that is but just anywhere before your first ability that attacks will be fine
    ^0^Team Nova's PQR NCC ^0^

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

  15. #6360
    LtButterman's Avatar Member
    Reputation
    4
    Join Date
    Jan 2012
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Boss
    Your SMFBeta profile is ****ing insane! I've got a 403 Souldrinker in MH and 378 HoT sword in OH and I'm bursting 50k+ on HM Wlord and sustaining 40k+ it's rivaling my Arms SD DPS >_> Im hoping to get a 403 Nokaled or another 403 SD to really see dps.
    next week HM HoM is auto mine so if i get that as my BiS MH and Kaled in OH DPS will increase dramatically. I don't see any problems with that SMF or TG Beta profiles and rarely see the word "cats" spam my chatwindow lol.. Dunno if that's a part of a code you left in or not but apart from that no problems whatsoever with either of the 2.

    On another note are you using the Simcraft rotation for SMF? Just wondering.

    As always ****ing great job, man.

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