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

User Tag List

Page 22 of 731 FirstFirst ... 18192021222324252672122522 ... LastLast
Results 316 to 330 of 10955
  1. #316
    enclezer's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    need cat profile/

    [BETA] PQRotation - an automated ability priority queue.
  2. #317
    matimati's Avatar Member
    Reputation
    2
    Join Date
    Feb 2011
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by enclezer View Post
    need cat profile/
    Look on prev page. awesome one there.

  3. #318
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    been working on prot warrior single target just checking if I am heading in the right direction

    commanding shout

    Code:
    local commandingshout = UnitbuffID("player", 469)
    local PWf = UnitbuffID("player", 21562)
    if (commandingshout == nil and PWf == nil) then
    	return true
    	else
    		if UnitPower("player") < 40 then
    		return true
    	end
    end
    concussion blow

    Code:
    local shieldslam = UnitbuffID("player", 50277)
    local thunderclap = UnitbuffID("player", 6343)
    if (shieldslam == nil and thunderclap ==  nil) then
    	return true
    end
    devestate

    Code:
    local rendDebuff = UnitDebuffID("target", 94009, "PLAYER|HARMFUL")
    local shieldslam = UnitbuffID("player", 50277)
    local thunderclap = UnitbuffID("player", 6343)
    local revenge = UnitbuffID("player", 6572)
    if (shieldslam == 0 and revenge == 0 and thunderclap == 0 and rendDebuff == 0) then
    			return true
    
    end
    rend tho I think I should just leaving it to spam it if not on hmm
    Code:
    local rendDebuff = UnitDebuffID("target", 94009, "PLAYER|HARMFUL")
    local shieldslam = UnitbuffID("player", 50277)
    local thunderclap = UnitbuffID("player", 6343)
    local revenge = UnitbuffID("player", 6572)
    if rendDebuff == not nil then
    	return false
    	else
    		if (shieldslam == 0 and revenge == 0 and thunderclap == 0) then
    			return true
    		end
    end
    revenge

    Code:
    local shieldslam = UnitbuffID("player", 50277)
    local thunderclap = UnitbuffID("player", 6343)
    local concussionblow = UnitBuffID("player", 12809)
    if (shieldslam == nil and thunderclap ==  nil and concussionblow == nil) then
    	return true
    end
    shockwave single target

    Code:
    local shieldslam = UnitbuffID("player", 50277)
    local thunderclap = UnitbuffID("player", 6343)
    local revenge = UnitbuffID("player", 6572)
    if (shieldslam == 0 and revenge == 0 and thunderclap == 0) then
    			return true
    
    end
    and thunderclap

    Code:
    local shieldslam = UnitbuffID("player", 50277)
    if shieldslam == nil then
    	return true
    end

    severs are down so cant test it wondering if there is anything wrong code wise, Just the rotation wasn't doing great so thought if I add conditions
    to each ability checking if it should be applied then or something that is better tpr should be first

    any help would be appreciated

  4. #319
    AdamZZ's Avatar Active Member
    Reputation
    42
    Join Date
    May 2007
    Posts
    139
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    me28791, why are you checking if the player has a Shield Slam buff on them ? Ofc they won't have because Shield Slam is an ability not a buff.
    Go to wowpedia and check their API page to find out how to check for a spell Cooldown.

  5. #320
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks for that.....and I have only ever coded in html and was ages ago lol will look at it now

    edit: so for thunderclap would be


    local sh, _, _, _, _, _, timer = UnitbuffID("player", 50277)
    local shs, shd, she = GetSpellCooldown(23922)
    local cd = (shs + shd - GetTime())
    local tc, _, _, _, _, _, timer = UnitDEbuffID("target", 6343)
    local tcs, tcd, tce = GetSpellCooldown(6343)
    local tccd = (tcs + tcd - GetTime())

    if sh == not nil then
    if cd = 0 then
    return false
    else
    if tc == nil then
    if tccd = 0
    then return true

    end
    end
    end

    pretty sure that is checking if the sword and board (shield slam proc) is up if not then checks if shield slam is off cd then if is on cd and also no proc will use thunderclap also will check if the tc debuff is alrady up as well
    Last edited by me28791; 07-26-2011 at 07:09 AM.

  6. #321
    AdamZZ's Avatar Active Member
    Reputation
    42
    Join Date
    May 2007
    Posts
    139
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not sure what you are trying to do with that bit of code.

    Code:
    local shs, shd, she = GetSpellCooldown(23922)
    local cd = (shs + shd - GetTime())
    
    if cd > 0 then
     return false
    else
     return true
    end
    This code will check if shield slam is off cooldown and return true if it is.
    Your code is checking for some buff that doesn't even exist.
    Why would you want to check for Shield Slam cd on Thunderclap anyways?

  7. #322
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so it would priotize shield slam over tc and not worry about TC at all if ss is procced or off cd, the checking of buff on player is sword and board which is the proc, the checking of debuff on target would be checking if the thunderclap debuff is already on target

    edit: I think I get what you mean now in rotation editor it will check abilities from top to bottom right? if so I am an idiot
    Last edited by me28791; 07-26-2011 at 07:18 AM.

  8. #323
    AdamZZ's Avatar Active Member
    Reputation
    42
    Join Date
    May 2007
    Posts
    139
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, rotation editor is there so you can prioritize your rotation. The spells at the top will be cast before the spells at the bottom.

    50277 is an invalid spell ID according to Wowhead.

  9. #324
    me28791's Avatar Member
    Reputation
    10
    Join Date
    Jul 2011
    Posts
    90
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sword and Board - Spell - World of Warcraft maybe I am wrong?

    thanks again for all your help now time to change everything on it

  10. #325
    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 andryshka View Post
    Can't download it.
    "Invalid Attachment specified. If you followed a valid link, please notify the administrator"
    yup same for me, pending approval yada yada.....but thanks Crystal for taking your time making these profiles.

  11. #326
    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)
    Hey all! Thanks again for your great work on this.. program? Xelper!

    After extensive testing in both Firelands raid enviroments (all bosses) some heroic bosses and regular heroics I've been able to produce some really good numbers with my really basic rotation, so I've decided to put some more effort into updating my Shadowpriest rotation on a more advanced level.

    I do have to stress though that it would be awesome with some kind of warden protection as I really don't want to lose my account which I've had for almost 6 years now (including 2 alt accounts and my Starcraft 2 account).
    I'm nore really sure what could be done, or if you want to do it. Look on it like kind of a request. :P

    Anyhow, new and updated Shadowpriest rotations are coming up sometime this week!

  12. #327
    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)
    try the link for warlocks on page 22 again. i just clicked the links and it worked for me.

  13. #328
    Kiup66's Avatar Private
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For me it`s still not working...

  14. #329
    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)
    ok lets try this.
    http://tinyurl.com/3srdqv5 for warlock
    http://tinyurl.com/3m4max8 for ArcaneMage

  15. #330
    Kiup66's Avatar Private
    Reputation
    1
    Join Date
    Sep 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    They work. Thanks
    Last edited by Kiup66; 07-26-2011 at 11:17 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 12:34 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