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

Shout-Out

User Tag List

Page 566 of 731 FirstFirst ... 66466516562563564565566567568569570616666 ... LastLast
Results 8,476 to 8,490 of 10955
  1. #8476
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cukiemunster View Post
    How would I re-work Ferocious Bite to be used regardless of how many combo points there are if boss < 60%, and there is less than like 3 seconds before Rip falls off? This would be great for fights like Morchok and Yorsahj where you are target switching, or have to move from boss and Rip ends up falling off before FB gets 5 CP and is used.
    From my profile

    Code:
    local sRip, _, _, _, _, _, ripEndTime = UnitDebuffID("target", 1079, "PLAYER")
    	local playerCP = GetComboPoints("player", "target")
    	local targetHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    	local ripHealth = 60
    	local Berserk = UnitBuffID("player", 50334)
    	local SavageRoar, _, _, _, _, _, SavageRoarEndTime = UnitBuffID("player", 62071)
    	
    	if sRip then
    		ripFinishTime = ripEndTime - GetTime()
    		if targetHP < ripHealth then
    			if ripFinishTime < 2 and playerCP >= 1 then
    				return true
    			end
    			if playerCP == 5 then
    				return true
    			end
    		end
    		
    		if playerCP == 5 and Berserk and ripFinishTime > 5 then
    			if SavageRoar then
    				local SavageRoarFinishTime = SavageRoarEndTime - GetTime()
    				if SavageRoarFinishTime > 3 then
    					return true
    				end
    			end
    		end
    	end
    Set ripHealth based if you have set bonus or not.

    [BETA] PQRotation - an automated ability priority queue.
  2. #8477
    soheil55's Avatar Corporal
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    xelper m8 before of this update 2.0.6 to 2.0.9 i did 31k on the boss dummy dps but now i dont know what happend in this new pqr i just see 23k dps would you plz upload your latest retri paladin profile for me or give me link thank you so much man
    Last edited by soheil55; 03-27-2012 at 11:25 AM.

  3. #8478
    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)
    I haven't made any changes at all that would affect DPS or how a profile runs since before 2.0.6.... However, here is my ret profile.

    http://www.ownedcore.com/forums/worl...ml#post2100292 ([BETA] PQRotation - an automated ability priority queue.)

  4. #8479
    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)
    Same wow version, new offsets?

    ETA on updated offsets for 15343?

  5. #8480
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron

    Feel like a pest at this point but I'm not seeing where you might have answered my PM or my questions here about the Mage profiles. Is there any way you could modify them to work below level 85?

  6. #8481
    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 Xelper View Post
    Ah, yeah that is strange that it is still doing the movement check on the normal spell ID. Oh well, still can't do anything about it, yeah just gotta stick with CastSpellByName() for now.
    Xelper fix it and get in vent!

  7. #8482
    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 deadpanstiffy View Post
    Same wow version, new offsets?

    ETA on updated offsets for 15343?

    There is no new client, and no new offsets.

  8. #8483
    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 Xelper View Post
    There is no new client, and no new offsets.
    Any suggestion as to what I can do? It detects the wow process normally, but when i activate a profile, it does nothing. No debug text or anything.

  9. #8484
    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)
    Try rebooting. If that doesn't work you have a bad profile somewhere. You can copy PQRUpdater to a new directory to create a fresh install then copy in your settings and interrupt list.
    Last edited by Xelper; 03-27-2012 at 12:57 PM.

  10. #8485
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Edit the data file, right down at the bottom I think is the F_traplauncher code. Then you will have to edit the ability for the trap you wish to fire with alt.
    Getting LUA Errors + Autoattack on your newest Profile. KMD_SV worked fine, but your new SVST and SVAOE profiles are just giving errors. I've closed WoW + PQR and reopened hoping it was a bug, but the errors remain.
    Last edited by Taran32; 03-27-2012 at 01:29 PM.

  11. #8486
    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 Gabbz View Post
    From my profile

    Code:
    local sRip, _, _, _, _, _, ripEndTime = UnitDebuffID("target", 1079, "PLAYER")
    	local playerCP = GetComboPoints("player", "target")
    	local targetHP = 100 * UnitHealth("target") / UnitHealthMax("target")
    	local ripHealth = 60
    	local Berserk = UnitBuffID("player", 50334)
    	local SavageRoar, _, _, _, _, _, SavageRoarEndTime = UnitBuffID("player", 62071)
    	
    	if sRip then
    		ripFinishTime = ripEndTime - GetTime()
    		if targetHP < ripHealth then
    			if ripFinishTime < 2 and playerCP >= 1 then
    				return true
    			end
    			if playerCP == 5 then
    				return true
    			end
    		end
    		
    		if playerCP == 5 and Berserk and ripFinishTime > 5 then
    			if SavageRoar then
    				local SavageRoarFinishTime = SavageRoarEndTime - GetTime()
    				if SavageRoarFinishTime > 3 then
    					return true
    				end
    			end
    		end
    	end
    Set ripHealth based if you have set bonus or not.
    Awesome, I didn't realize that you had already incorporated this into your profile. I would +rep u if I could lol

  12. #8487
    sylaborg's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Xelper

    Do you mind uploading your Prot profile again? Seems the one I have is not functioning, could be a old profile or corrupted.

    Thanks.

  13. #8488
    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 sylaborg View Post
    @Xelper

    Do you mind uploading your Prot profile again? Seems the one I have is not functioning, could be a old profile or corrupted.

    Thanks.
    I haven't updated that one in a very long time (not since 2.0) however I will update it soon.

  14. #8489
    sylaborg's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    I haven't updated that one in a very long time (not since 2.0) however I will update it soon.
    No wonder it didn't work when I tried tanking the other night. Looking forward to the update

    Cheers!

  15. #8490
    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)
    Ok I updated it... It was actually not working because it was developed on a really old version of PQR. All I had to do was go through and resave all of the abilities.

    Paste this into your rotation editor -> "Download Profile from URL"
    http://dl.dropbox.com/u/39925787/PQR_Profiles/xelper_profiles.txt

    (For any profile developers curious on how to use it, I used the DeleteProfile command in that text file because I wanted to rename my ret from "Xelper" to "XelperRet")

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 10:56 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