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

User Tag List

Page 483 of 731 FirstFirst ... 383433479480481482483484485486487533583 ... LastLast
Results 7,231 to 7,245 of 10955
  1. #7231
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I have to say I'm not too happy with the removal of the before/after.
    You can continue to use the old version, but Perform After/Before was clunky. Someone editing the profile couldn't just see "oh this is doing something before and after" without going into the tabs. If someone used an ability as a template they might never know they also have possibly bad before/after code there. Or if they just copied/pasted an ability to another they might not know they are missing code.


    It should be trivial to fix the profiles, just do this where you would 'return true':


    If spell ID is not 0 and only using "Perform Before"
    Code:
    --PERFORM BEFORE CODE HERE
    return true
    If spell ID is not 0 and using "Perform After" OR If spell ID is 0:
    Code:
    local spellAvailable = PQR_SpellAvailable(SpellID)
    if spellAvailable then
        --PERFORM BEFORE CODE HERE
        CastSpellByID(SpellID, Target)
        --PERFORM AFTER CODE HERE
    end
    Last edited by Xelper; 03-10-2012 at 12:54 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #7232
    sharkyx1x's Avatar Active Member
    Reputation
    36
    Join Date
    Jun 2008
    Posts
    270
    Thanks G/R
    1/12
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what class has the best 80-85 healing profiles?

  3. #7233
    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 Familiar View Post
    local stamp = UnitBuff("player", 78893)

    if stamp ~= nil then
    RunMacroText("/console Sound_EnableSFX 0")
    RunMacroText("/cast Ravage!")
    RunMacroText("/console Sound_EnableSFX 1")
    end

    Firekitteh PQRotation profile,4p13t(druid feral) bonus doesn't work. Help me plz.
    Hope a special somebody doesn't kill me...... but try this on for size

    Code:
    if IsSpellKnown(6785)
     and UnitExists("target")
     and IsSpellInRange(GetSpellInfo(6785),"target") == 1
     and UnitBuffID("player",81022)
    -- and UnitBuffID("player",5217) -- Tiger's Fury
    then CastSpellByName(GetSpellInfo(81170),"target") end
    ^0^Team Nova's PQR NCC ^0^

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

  4. #7234
    BHLDepression's Avatar Member
    Reputation
    7
    Join Date
    Jan 2012
    Posts
    132
    Thanks G/R
    2/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ANy good sub rotations for a rogue?

  5. #7235
    stec2012's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by BHLDepression View Post
    ANy good sub rotations for a rogue?
    Here ya go Blinded's

  6. #7236
    roli4's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    somebody have 3.3.5 profiles?

  7. #7237
    Familiar's Avatar Member
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    28
    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
    Hope a special somebody doesn't kill me...... but try this on for size

    Code:
    if IsSpellKnown(6785)
     and UnitExists("target")
     and IsSpellInRange(GetSpellInfo(6785),"target") == 1
     and UnitBuffID("player",81022)
    -- and UnitBuffID("player",5217) -- Tiger's Fury
    then CastSpellByName(GetSpellInfo(81170),"target") end
    I love you +rep

  8. #7238
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    EDIT: This is not a Lua unlocker, and a Lua unlocker is not needed to use PQR.
    so if this is not a protected lua code unlocker, what is the offset for and what exactly does pqrotation do to well do what it does, if this is like your secret ok but if you are willing to enlighten me pls do so. either by giving a answer or pointing me in the right direction where it is written how pqrotation is working ^^

  9. #7239
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know what the best holy pally profiles are currently? (and if they are mouseover or not)

  10. #7240
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    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
    Hope a special somebody doesn't kill me...... but try this on for size

    Code:
    if IsSpellKnown(6785)
     and UnitExists("target")
     and IsSpellInRange(GetSpellInfo(6785),"target") == 1
     and UnitBuffID("player",81022)
    -- and UnitBuffID("player",5217) -- Tiger's Fury
    then CastSpellByName(GetSpellInfo(81170),"target") end
    Originally Posted by Familiar View Post
    I love you +rep
    Is your client not an English client? If not, all you had to do was change Ravage! to your native clients code.

    But on a side note, I will be uploading a update to my FireKitteh Profile later today because the newer version is universal and will work on all languages.

    EDIT* Thanks for posting that Bu_ba. Sadly, I'm not on the forum 24/7 like you

  11. #7241
    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 firepong View Post
    Is your client not an English client? If not, all you had to do was change Ravage! to your native clients code.

    But on a side note, I will be uploading a update to my FireKitteh Profile later today because the newer version is universal and will work on all languages.

    EDIT* Thanks for posting that Bu_ba. Sadly, I'm not on the forum 24/7 like you
    lol every since I started keeping tabs on who's been downloading my profiles and such, I realized that over 30% of the people aren't in America or England, so I've been morphing everything to Universal code to accommodate them

    and thats the beauty of having a smart phone with Tapatalk it's always a single click away!!!
    ^0^Team Nova's PQR NCC ^0^

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

  12. #7242
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    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
    lol every since I started keeping tabs on who's been downloading my profiles and such, I realized that over 30% of the people aren't in America or England, so I've been morphing everything to Universal code to accommodate them

    and thats the beauty of having a smart phone with Tapatalk it's always a single click away!!!
    Yeah, I've got Tapatalk on my phone and use it on here sometimes. I've also, like I said, started converting all my profiles over to universal. The only problem I'm having is this spot of code for mangle. Works great when all it needs to do is return true, but when I start putting in CastSpellByName((())), it stops. Heres the code:

    Name: Mangle
    SpellID: 33876
    Delay: 0

    Code:
    -- Rogues and Warriors can handle it themselves.
    local hasCatMangle, _, _, _, _, _, CatMangleTimer = UnitDebuffID("target", 33876)
    local hasBearMangle, _, _, _, _, _, BearMangleTimer = UnitDebuffID("target", 33878, "PLAYER")
    local hasTrauma = UnitDebuffID("target", 46857)
    local hasHemorrhage = UnitDebuffID("target", 16511)
    local CP = GetComboPoints("player", "target")
    
    
    if PQR_NotBehindTarget() then
    	if CP == 5 then
    		return false
    	else
    		return true
    	end
    end
    
    
    -- First, let's let other people handle their own debuffs
    if hasTrauma ~= nil then
    	return false
    elseif hasHemorrhage ~= nil then
    	return false
    elseif hasBearMangle ~= nil then
    	return false
    
    
    -- Let us handle it!
    elseif hasCatMangle ~= nil or hasBearMangle ~= nil then
        -- Check the timer
    	if CatMangleTimer - GetTime() < 1 then
    		return true
    	end
    else
    	return true
    end
    replaced with

    Name: Mangle
    SpellID: 0
    Delay: 0

    Code:
    -- Rogues and Warriors can handle it themselves.
    local hasCatMangle, _, _, _, _, _, CatMangleTimer = UnitDebuffID("target", 33876)
    local hasBearMangle, _, _, _, _, _, BearMangleTimer = UnitDebuffID("target", 33878, "PLAYER")
    local hasTrauma = UnitDebuffID("target", 46857)
    local hasHemorrhage = UnitDebuffID("target", 16511)
    local CP = GetComboPoints("player", "target")
    
    
    if PQR_NotBehindTarget() then
    	if CP == 5 then
    		return false
    	else
    		CastSpellByName(tostring(GetSpellInfo(33876)))
    	end
    end
    
    
    -- First, let's let other people handle their own debuffs
    if hasTrauma ~= nil then
    	return false
    elseif hasHemorrhage ~= nil then
    	return false
    elseif hasBearMangle ~= nil then
    	return false
    
    
    -- Let us handle it!
    elseif hasCatMangle ~= nil or hasBearMangle ~= nil then
        -- Check the timer
    	if CatMangleTimer - GetTime() < 1 then
    		CastSpellByName(tostring(GetSpellInfo(33876)))
    	end
    else
    	CastSpellByName(tostring(GetSpellInfo(33876)))
    end
    I've even tried to simplify it by just checking to see if Cat Mnagle is on the target or not and it if isn't, it will cast the spell. But even that just stopped the rotation and froze it. Starting the bug the hell out of me, literally and figuratively lol

  13. #7243
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol, bad bubba stealing my Ravage code!

    Anyhow, here's what I use currently for Mangle:
    Code:
    local Mangle,_,_,_,_,_,timer = UnitDebuffID("target",33876)
    
    if IsSpellKnown(33876)
    	and UnitExists("target")
    	and IsSpellInRange(GetSpellInfo(33876), "target") == 1
    	and IsUsableSpell(GetSpellInfo(33876))
    	and (not UnitDebuffID("target",16511) or not UnitDebuffID("target",46857))
    then
    	if Mangle then
    		if timer - GetTime() < 2 then return true end
    	else return true end
    end
    I'm not really checking for other bleed debuffs, but that's easy to add in by using "and not UnitDebuffID("target", bleedID here)" in the if loop.

    Cheers!

    Edit: Added in checks for Rogue's Hemorrhage and a Warrior's Trauma. Won't fire of any of them is present
    Last edited by Kinky; 03-10-2012 at 05:27 PM.

  14. #7244
    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)
    well for one, only when you're checking a spells name would you run into universal issues, if you just have PQR handle spell casting with putting SpellID in the box and return true, you shouldn't fun into any issues...

    also tostring(GetSpellInfo(..))

    literally means turn GetSpellInfo(..) into a string, so you're trying to cast GetSpellInfo(..) instead of what GetSpellInfo(..) returns (which is a string already)
    ^0^Team Nova's PQR NCC ^0^

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

  15. #7245
    Sheepmoon's Avatar Contributor
    Reputation
    143
    Join Date
    Oct 2011
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    If you have this great program and the ability to set up the best priorities, why wouldn't you have the best profile? Adding things like death strikes, power word: shields, etc to dps profiles is the "user play style", I support that side of it as I make practice of it's use as well.
    Care to post your "best profile" for shadow priest?

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 03:02 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