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

Shout-Out

User Tag List

Page 464 of 731 FirstFirst ... 364414460461462463464465466467468514564 ... LastLast
Results 6,946 to 6,960 of 10955
  1. #6946
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey was just wondering whats happened to Onya and if anyone has continued work on his Resto Shaman profile. The profile is amazing as is but still has a few bugs here and there. One problem I was having was it would spam greater healing wave but not give it time to cast. Other times it will just spam lightning bolt while people are nearly dead and still at full mana.

    [BETA] PQRotation - an automated ability priority queue.
  2. #6947
    dookieface's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @boss

    awsome job you have done with all your warrior profile. with you'r sd arm profile im always on top of meter..but since i got my 2nd Gurthalak, Voice of the Deeps i wanted to try out fury. i try'ed out your tg5.4 and i get alot of lag, at some point it even dc. never happen with any other of your profile. can you help me with this pls.

    thanks
    dookie

  3. #6948
    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)
    are there any Healing leveling profiles? 15-85? for any heal classes

  4. #6949
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dookieface View Post
    @boss

    awsome job you have done with all your warrior profile. with you'r sd arm profile im always on top of meter..but since i got my 2nd Gurthalak, Voice of the Deeps i wanted to try out fury. i try'ed out your tg5.4 and i get alot of lag, at some point it even dc. never happen with any other of your profile. can you help me with this pls.

    thanks
    dookie
    I think someone else had a similar issue, I'll look into it and see if I can figure out what's going on.

  5. #6950
    Sharge's Avatar Corporal
    Reputation
    6
    Join Date
    Oct 2011
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help for how to find the spell id please

    Thanks ;p

  6. #6951
    dookieface's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @boss

    thank you for all your time and great profile if i have yet to say thanks..lol

    dookie

  7. #6952
    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 Sharge View Post
    Can someone help for how to find the spell id please

    Thanks ;p
    Wowhead: Thrall-tested, Jaina-approved.

    search for spell and then the id is the number that is in the url

    for example

    spell : Cobra Shot would be url http://www..wowhead.com/spell=77767 and the number "77767 is the spell id

  8. #6953
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @Valma: The GCD is added to every spell regardless if it has a cooldown or not. Hence why GetSpellCoodlwon, hell, even select(2,GetSpellCooldown(spellID/name)) returns a random number right after you've launched an ability.

    You're doing it wrong though by adding + 1.2 to your profile as people with less haste rating than you would effectively be screwed over. There's a way around this though.

    The global cooldown can be calculated like this:
    Code:
    GCD = (1.5*((1 + GetCombatRating(19) / (128.057 * 100))^-1))
    In other words; Base cast time * ((1 + Haste Rating / (Rating Conversion * 100))^-1) -- This turns out (with my 3035 haste rating) to be ~1.212...... seconds.

    Simply subtracting this from any castable spell and using "<= 0" when you're checking if something is on cooldown will always be accurate as when something is affected by the GCD, the number returned with select(2,GetSpellCooldown()) will always be 0, otherwise it'll be a negative number. (Hence checking if a cooldown is 0 or under; i.e. negative)

    This should in essence always return:
    - The actual cooldown
    - 0
    - -gcd
    Code:
    GCD = (1.5*((1 + GetCombatRating(19) / (128.057 * 100))^-1))
    ShadowfiendCD = (select(1,GetSpellCooldown(34433)) + select(2,GetSpellCooldown(34433)) - GetTime()) - GCD
    Because it always takes the global cooldown into account, the actual global cooldown of the user (and not just some random number. Easy huh?)

    Just thought I'd share a bit. :P
    Actually the problem is deeper.You read something wrong from my post.

    I can do even MORE complicated and accurate checks on profile side,BUT any of this will struck on hardcoded wall.

    What I mean on hardcoded wall - I explained in the last post where I was asking Xelper about PMing me lua source or just a needed part of it.
    In short conclusion - Xelper got GetSpellCooldown somewhere in PQRside lua code.So even if delay in ability is set to negative value f.e. -100 program will not try to cast(read like do any checks) if GCD is currently ticking.So we can say for sure that if you cast 2 same spells in a row which have casttime +- equal to your GCD you will get harddelays between casts of your latency.

    BTW got no responce from Xelper yet :/
    MEDVED+VODKA+BALALAYKA

  9. #6954
    jamesbay's Avatar Sergeant
    Reputation
    8
    Join Date
    Oct 2011
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am fiddling with a rotation. Does anyone know if ultraxions hour of twilight LFR spell has got a different spellid than on normal and hc ds?
    Last edited by jamesbay; 03-03-2012 at 03:25 PM.

  10. #6955
    Phishstick's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys i have been using pqr on dif toons and its great, sadly one of the weaker profiles is fire mage, so i am offering 50usd to anyone who can get it to consistently push the numbers that it should do, current ilv398 and simcraft suggest that without any buffs on dummy my numbers should be around 30k, i would also appreciate if you have no fading light code send me a pm if you are interested.

  11. #6956
    Ginsplosion's Avatar Member
    Reputation
    2
    Join Date
    Feb 2012
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Completely off the general jist of topics here but is anyone having PQ conflict with Skada/SavedInstances addons? Whenever I run PQ I get flooded with lua errors that tie in with Skada (and it stops recording combat) and SavedInstances doesn't show anymore, just wipes the data.

    Very frustrating.

    I would list all the errors but the best way to describe them is that they seem to be variances of the same strand, for example: -

    "3x Skada-1.3-11\Skada.lua:1280: attempt to call global 'time' (a nil value)
    SkadaDebuffs-1.0\Debuffs.lua:56: in function <SkadaDebuffs\Debuffs.lua:52>
    SkadaDebuffs-1.0\Debuffs.lua:96: in function `func'
    Skada-1.3-11\Skada.lua:1402: in function <Skada\Skada.lua:1302>
    <string>:"safecall Dispatcher[19]":4: in function <[string "safecall Dispatcher[19]"]:4>
    <in C code>: ?
    <string>:"safecall Dispatcher[19]":13: in function `?'
    CallbackHandler-1.0-6:92: in function `Fire'
    AceEvent-3.0-3 (Bagnon):52: in function <...ace\AddOns\Bagnon\libs\AceEvent-3.0\AceEvent-3.0.lua:51>"

    The debuff line varies like so: damage,deaths,healing - etc etc etc

    Saved Instances addon gives me: -

    "1x SavedInstances-4.5.5.130\SavedInstances.lua:683: attempt to call global 'time' (a nil value)
    SavedInstances-4.5.5.130\SavedInstances.lua:1460: in function `ShowTooltip'
    SavedInstances-4.5.5.130\SavedInstances.lua:1425: in function `ShowDetached'
    SavedInstances-4.5.5.130\SavedInstances.lua:1385: in function `ToggleDetached'
    SavedInstances-4.5.5.130\SavedInstances.lua:981: in function `OnClick'
    LibDBIcon-1.0-24 (BigWigs):127: in function <...\AddOns\BigWigs\Libs\LibDBIcon-1.0\LibDBIcon-1.0.lua:127>"

    I've tried all the obvious things such as clearing cache. I use Curse Client to manage addons and one temporary fix (tested this 5/6 times now, definitely temporary) is to delete the settings (saved variables) for both of these addons. Both then work for a matter of hours and various relogs between chars and then these return. Piss annoying to say the least. However these mysterious errors *ONLY* occur when I start using PQ on characters.

    Any ideas? Would be massively appreciated.
    Last edited by Ginsplosion; 03-03-2012 at 03:49 PM.

  12. #6957
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Appears to work, watching it, and using needtoknow to check focus for Earth Shield, and when it drops it goes back on.

    Update - Works but seem to see an issue. After boss I hung around area by myself, it started spam casting Earth Shield on me, guessing as it couldnt reach or find my focus target. Not sure what caused that

    Probably not the best way, but I think I may have found a way to have Earth Shield work the way I want it to in the Resto Shaman Profile

    I created a new ability just called Eshield

    With the Target Option set to Focus (So that it keeps it on my Focus target, which would be the tank)

    Then used this code

    Code:
    local EShield = UnitBuffID("focus", 974)
    
    if EShield == nil then 
    	return true
    end
    Which was just copied from a pally profile for a different buff

    I have not tested it much but am about to, I create this and put it towards the top of my Rotation and when I started up the profile, it casted Earthshield on my Focus.

    Going to test it in LFR to ensure it keeps it on them throughout like my goal is
    Last edited by abndrew82; 03-03-2012 at 05:42 PM.

  13. #6958
    Schmidty47's Avatar Member
    Reputation
    7
    Join Date
    Feb 2012
    Posts
    84
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there going to be any shaman enhance spec for PVE comming out? or and updated DK profile?

  14. #6959
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Have not tried the Enchance profile that comes with I think Kez Resto. And what Spec DK. There are nice Frost and Unholy ones posted through the forums

  15. #6960
    wtfnix's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Schmidty47 View Post
    Is there going to be any shaman enhance spec for PVE comming out? or and updated DK profile?
    There's quite a few of these within this thread... There is a Search Thread tool to find whatever you're looking for. I have used them all so thus far, however I've had to tweak all of mine.

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