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

Shout-Out

User Tag List

Page 19 of 731 FirstFirst ... 15161718192021222369119519 ... LastLast
Results 271 to 285 of 10955
  1. #271
    Debordes's Avatar Member
    Reputation
    14
    Join Date
    Oct 2007
    Posts
    128
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Program works great, but for some reason the Warrior rotation glitches out and ends up doing one of two things.

    1:Spams Heroic Strike because it gets into s constant loop of going from 30~to 50+ rage

    2:Will do absolutely nothing if Colosuss Smash is on cool down/not active on target.

    [BETA] PQRotation - an automated ability priority queue.
  2. #272
    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)
    Can some people try this version:
    PQR107.zip

    It will be the release version. If all goes well I will look through the profiles posted in the thread then re upload this version with the profiles included.

    Thanks.

  3. #273
    Sivers's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    62
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by theri View Post
    Definitely liking this program, makes the game more fun in some ways or maybe I'm just beyond bored with the game otherwise. Ret is my paladin's off spec and I've gotten this to pull over 15k sustained dps on the raid dummy now so I can't complain.

    Here's my version of zealotry. It wont use Zealotry if GoAK is available to be used. Will use it if GoAK is on cooldown and will use it if GoAK is active and the strength bonus is fully stacked.

    Code:
    local sDivinePurpose = UnitBuffID("player", 90174)
    -- 86700 is the stacking strength buff from GoaK.
    local _,_,_,APowerCount = UnitBuffID("player", 86700)
    -- Where Z = Zealotry, G = Guardian of Ancient Kings and s,d,e are start, duration and enabled.
    local Zs,Zd,Ze = GetSpellCooldown(85696)
    local Gs,Gd,Ge = GetSpellCooldown(86150)
    
    if Ze == 0 then
    	-- Zealotry is active.
    	return false
    else
    	-- Neither Zealotry nor GoAK are active.
    	if (Gs == 0 and Gd == 0) then
    		-- GoAK is ready to use, do not use Zealotry.
    		return false
    	else
    		-- GoAK is on cool down, free to use Zealotry.
    		if APowerCount == nil then
    			if (Zs == 0 and Zd == 0) then
    				-- Zealotry is ready to use.
    				if UnitPower("player", 9) == 3 or sDivinePurpose ~= nil then
    					return true
    				end
    			end
    		elseif APowerCount ~=nil then
    			if APowerCount == 20 then
    				if (Zs == 0 and Zd == 0) then
    					-- Zealotry is ready to use.
    					if UnitPower("player", 9) == 3 or sDivinePurpose ~= nil then
    						return true
    					end
    				end
    			end
    		end
    	end
    end
    forgive my ignorance, but how do I add this to the existing Paladin abilities file without it crashing? I can't seem to get the formatting right, and I'd love a version with zealotry working.

  4. #274
    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)
    Originally Posted by AdamZZ View Post
    That site doesn't even have all classes, just checked feral cat for fun and there were no information whatsoever. EJ is just a simple to browse thru aswell, just go into the Class forums and read the first post in the appropriate thread.
    ya sure? Feral Cat Druid DPSing Rotation - (4.2) World of Warcraft Class Guide

  5. #275
    theri's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sivers

    open the ability editor, bring up paladin abilities. scroll down to zealotry and click on it. right click->select all and then delete the old code. Copy and paste the code I posted above into the code box and save it.

    Make sure zealotry is part of your rotation in the rotation editor.

    If you cant get it to work I can post my files as i have a few more changes to make use of lifeblood and other stuff (id have to edit these out but can post my files without the character specific stuff i have going on)

  6. #276
    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 Xelper View Post
    Can some people try this version:
    PQR107.zip

    It will be the release version. If all goes well I will look through the profiles posted in the thread then re upload this version with the profiles included.

    Thanks.
    Anyone try this?

  7. #277
    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)
    Thanks, I'll look at interrupt but the changes should have next to 0 effect on interrupt time.

    I'm also going to be making it so instant cast spells can have delays. Serpent Sting is instant cast, no cooldown but has a travel time... so it sometimes casts twice when at 30-40 yard distance.

  8. #278
    RaZz0r's Avatar Member
    Reputation
    11
    Join Date
    Jul 2007
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can Any one Please make a elemental shaman Profile 1 rotation with searing totem and one with the fire elemental totem
    you can find the rotation on this page Elemental Shaman DPSing Rotation - (4.2) World of Warcraft Class Guide
    I'll be very thankful if some one could make this form me and i will +rep

  9. #279
    xatlx's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I was jut wondering anyone make one up for Frost pvp DK yet ?? if so can i have it plz ?

  10. #280
    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)
    0#
    Originally Posted by hodsi1 View Post
    Don't worry mate its fixed its self now. I have a problem with the shadow priest though, I have to get at melee range to start the rotation, then i can run away and it will start but that is hard in dungeons as i get in some aoe's
    There is no melee range check, only a check to see if you are in combat so that it doesn't go crazy attacking everything if you accidentally leave it on. Try casting SW:P or the first ability in your rotation to get yourself in combat.

  11. #281
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    210
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xatlx View Post
    Oh i am sure i just Ran your profile with and without PS or outbreak the dmg diffrent is depend on OB with out using one unholy rune i can use that for OB so doing overall my OB will out dmg PS/Outbreak ran one for 15k dps with PS/OutBreak ,.... then ran another one for 17.5k dps without maybe i am just using DW ? IDK but the dmg output was a distance from eachother
    Both in theory and real world testing it's definitively a dps loss using a basis of the best DW single target spec Talent Calculator - World of Warcraft at present , I sit around 16k dropping outbreak and plague Strike and 18-19k with them,

    ---------- Post added at 01:10 PM ---------- Previous post was at 01:06 PM ----------

    Originally Posted by crystal_tech View Post
    found this Noxxic.com - WoW Class Guide for Raiders not quite sure how good it is but it gives plain English on rotations and such without the hassle of going to ej and browsing forum posts.

    This site is fine for showing you the basic idea for your rotation, but if you really want to min max your rotation(priority order) download simulationCraft and base it off the actions cue it uses for your class and spec, under the simulation tab.

    ---------- Post added at 01:20 PM ---------- Previous post was at 01:10 PM ----------

    Originally Posted by Xelper View Post
    There is no melee range check, only a check to see if you are in combat so that it doesn't go crazy attacking everything if you accidentally leave it on. Try casting SW:P or the first ability in your rotation to get yourself in combat.
    LOL, I've accidentally pulled a bit off random trash if in ZA and ZG if were chain pulling mobs and i don't disable the rotation via the hot key between pulls.
    Hands down most anticipated new feature for me is
    1) 'Smart Key' mode- instead of a rotation being 100% automated, you can simply press a key to perform the next ability in the rotation.
    Having this will allow for much better control in situations where shyt hits the fan.

  12. #282
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Can some people try this version:
    PQR107.zip

    It will be the release version. If all goes well I will look through the profiles posted in the thread then re upload this version with the profiles included.

    Thanks.
    Hmm just started it, checked options and quit it again, on quit i got a windows error message and WoW also crashed the same moment. Tried it again, same result.

  13. #283
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Anyone try this?
    Works without a problem for me so far, played both feral, warrior and lock with this.


    Also if any talented LUA coder could make a feral tank rotation i would be the happiest kid in town.
    Last edited by paveley; 07-24-2011 at 07:30 AM.

  14. #284
    Sivers's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    62
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The paladin ones are pretty boss, I just have to remove Consecration in most cases though since it's such a mana drain and then I go oom for interrupts lol.

    Also if someone would make working mage rotations (including the separate phases for arcane) I would love them forever.

  15. #285
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking forward to a Bear rotation. The kitty rocks.

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 11:38 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