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

Shout-Out

User Tag List

Page 241 of 731 FirstFirst ... 141191237238239240241242243244245291341 ... LastLast
Results 3,601 to 3,615 of 10955
  1. #3601
    woppo's Avatar Corporal
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi trying to sort the cyclone out for the feral arena setup i have tryed all sorts of things an it will not work with this one

    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Cyclone", "focus")

    if PS ~= nil and inRange == 0 then
    return true
    else
    return false
    end

    i have found the original one its does work but the creator says it has issue with range an having no focus

    local _, _, _, PS = UnitBuffID("player", 69369)

    if PS ~= nil then
    return true
    else
    return false
    end

    could prolly figure out my self if i only knew what " == 0 then" means if that the range or just the command to attempt the action

    [BETA] PQRotation - an automated ability priority queue.
  2. #3602
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by woppo View Post
    Hi trying to sort the cyclone out for the feral arena setup i have tryed all sorts of things an it will not work with this one

    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Cyclone", "focus")

    if PS ~= nil and inRange == 0 then
    return true
    else
    return false
    end

    i have found the original one its does work but the creator says it has issue with range an having no focus

    local _, _, _, PS = UnitBuffID("player", 69369)

    if PS ~= nil then
    return true
    else
    return false
    end

    could prolly figure out my self if i only knew what " == 0 then" means if that the range or just the command to attempt the action
    hmm "0" in programming mean "false" right? so if target isnt in range it returns true, so trying to cast cyclone if target is out of range, when target is in range it return false.
    so imo 0=false and 1=true

    Another thing, "69369" this spell ID is for predator's swiftness.
    Try it:
    Code:
    local PS = UnitDebuffID("focus", 33786)
    local inRange = IsSpellInRange("Cyclone", "focus")
    
    if PS == nil and inRange == 1 then
    	return true
    else
    	return false
    end
    but another thing is that, that will spam it after 3rd cyclone as we know it not works for some time after 3rd cyclone.
    Last edited by vorn10; 12-30-2011 at 06:56 PM.

  3. #3603
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lofty View Post
    Been playing around with bu_ba_911's Holy paladin profile.

    I found it draining mana far too much, and some very important spells where missing.

    CHANGELOG v1

    Code:
    1) Added in Xelper's Ultraxion's Hour of Twilight / Fading light code
    2) Added OHSHIT button (Lay on Hands)
    3) Added the use of Healthstone
    4) Changed some health percents for healing spells
    5) Changed mana regen abilities for better mana usage
    6) Added Light of Dawn (Does not check for range, so make sure you are correctly positioned)
    7) Fixed Cleanse (I think)
    8) Will be much better on mana usage now
    Download: http://dl.dropbox.com/u/11791741/Holy10man.zip

    Let me know if you would like to see any changes / anything added.
    when I add your profiles it crashes the program

  4. #3604
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lofty View Post
    Cheers for that

    Will have a play with Heroic Will later tonight when i can test
    Lofty something is wrong set in LoD. When i go to ability editor, chose LoD, press SAVE it working. o.O

    Originally Posted by jackus View Post
    when I add your profiles it crashes the program
    Try that: http://www.ownedcore.com/forums/worl...ml#post2165628 ([BETA] PQRotation - an automated ability priority queue.)
    Last edited by vorn10; 12-30-2011 at 07:47 PM.

  5. #3605
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks sheuron,

    is it possible to obtain the spellschool from which my targets get dmg?

  6. #3606
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by woppo View Post
    Hi trying to sort the cyclone out for the feral arena setup i have tryed all sorts of things an it will not work with this one

    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Cyclone", "focus")

    if PS ~= nil and inRange == 0 then
    return true
    else
    return false
    end

    i have found the original one its does work but the creator says it has issue with range an having no focus

    local _, _, _, PS = UnitBuffID("player", 69369)

    if PS ~= nil then
    return true
    else
    return false
    end

    could prolly figure out my self if i only knew what " == 0 then" means if that the range or just the command to attempt the action
    Soon i will release another profile!

  7. #3607
    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)
    Hey GRB what is the current option to set focus on target for cyclone?

  8. #3608
    Lofty's Avatar Banned
    Reputation
    37
    Join Date
    Feb 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vorn10 View Post
    Lofty something is wrong set in LoD. When i go to ability editor, chose LoD, press SAVE it working. o.O
    Ah so it is probably just a typo on the formating.

    Ill double check everything and re-write.

    Cheers for letting me know

  9. #3609
    drewdenman's Avatar Banned
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are these Frost DK Profiles tuned for DW or 2H?

    @Gorthok: I notice that bubba's does 2-3k more DPS then yours does. Also, it came with 3 profiles, is the one called "Frost Brez" supposed to Brez dead people? Cause I tried that profile thinking it would and it didn't.

  10. #3610
    Leetjerk's Avatar Sergeant
    Reputation
    13
    Join Date
    Dec 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by drewdenman View Post
    Are these Frost DK Profiles tuned for DW or 2H?

    @Gorthok: I notice that bubba's does 2-3k more DPS then yours does. Also, it came with 3 profiles, is the one called "Frost Brez" supposed to Brez dead people? Cause I tried that profile thinking it would and it didn't.
    Try my profile if you don't mind. It's a DW Masterfrost Priority(should also work same 2H). Reforge mastery and give it ago, i rank in every normal mode fight.

  11. #3611
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    Just remove Ambush, Recuperate, Rupture and Shiv from the rotation and you will gain alot of DPS. I dont think they are something a PvE Combat Rogue should do, at least according to the guide i read on manaflask.
    While I will agree that ambush is not used by combat rogues at all, Recupe is used for questing and nothing more, rupture is a DPS increase if you target has a bleed debuff and shiv really depends on how you play i personally do not use it in the rotation or when i'm just playing as it's just used to ramp up the stacks faster so you can get more instant procs and get to sinister strikes faster(DPS with both play styles in practically equal), as i haven't looked very far into the issue i have no idea whats causing it but as stated since the disc profile was added to the pack (that update of all the profiles) it has been pooling a large amount of energy to the point of it being waste for example pooling 80 energy for ~40 SS, that is were the large loss is coming from not from the abilities mentioned in you post. I would greatly appreciate if the author of the profiles would look into this issue or at least respond to my PMs or on of my posts so at least i know he is aware of the issue. I hope this issue gets resolved soon and as a suggestion for your tricks code (I have very little knowledge but sometimes i can pick things out with the help of my friend.) have it run off your focus target as doing to a tank beyond the first one to start the pull is pointless since it gives a 5% dmg increase and that can be better utilized by another DPS.

    Edit 1: Just noticed your reply on page 240, i will do some testing tonight and again tomorrow on the dummy thank you for your response and i'm sorry if i come across as an ass with how i type.

    Edit 2: just tested on a dummy and came within 700 DPS of my goal which i will just blame on RNG and crits as far as i can see it is no longer pooling energy for SS thank you very much for this quick response, i would like to know your stance on my suggestion about the addition of the focus target to the tricks of the trade, I would still love to see it remain the way it is for the purposes of LFR but would also like the flexibility of choosing for the DPS gain.

    Edit 3: another addition to this progile which would be amazing to see would bea change to how killing spree is used, It is not a huge DPS gain but using killing spree on CD or when you have the buff on you "Deep Insight" from bandits guile proves a DPS rather then the way it is currently used. Again i would like to stress I'm not trying to sound like a dick I'm just trying to help out the rest of the combat rogue community that happens to use this profile.

    Edit 4: Tinkering changed KS to work how i wanted, I'm lost on the Tricks focus if you changed this forever i would love you forever
    Last edited by travis2861; 01-02-2012 at 08:54 AM.

  12. #3612
    drewdenman's Avatar Banned
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Leetjerk View Post
    Try my profile if you don't mind. It's a DW Masterfrost Priority(should also work same 2H). Reforge mastery and give it ago, i rank in every normal mode fight.
    Wheres the profile at?


    ----

    EDIT: found it, will give it a go!
    Can you link the DW spec you're using?
    Last edited by drewdenman; 12-31-2011 at 07:18 AM.

  13. #3613
    Leetjerk's Avatar Sergeant
    Reputation
    13
    Join Date
    Dec 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by drewdenman View Post
    Wheres the profile at?


    ----

    EDIT: found it, will give it a go!
    Can you link the DW spec you're using?
    yep Talent Calculator - Game - World of Warcraft

  14. #3614
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi All

    Trying out me ret pala but seem to be having mana problems any ideas?

  15. #3615
    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)
    If you aren't in a raid, you might want to consider removing Consecration from the rotation.

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