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

User Tag List

Page 174 of 731 FirstFirst ... 74124170171172173174175176177178224274674 ... LastLast
Results 2,596 to 2,610 of 10955
  1. #2596
    marcmk2's Avatar Member
    Reputation
    5
    Join Date
    Nov 2008
    Posts
    51
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get the error as well but it still works 100% Hopefully Blizz lets us have our fun. I think I'd probably quit wow if they some how stopped it. I have much more fun being able to keep my eyes on whats going on and only have to worry about specific utility abilities.

    [BETA] PQRotation - an automated ability priority queue.
  2. #2597
    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)
    The error is not blizz watching nothing, the error happen everytime you relog a diferent char while program is running.

    Its a piece of code thats used the prioritize list inside pqr, thats why you all get the error, nothing else.

  3. #2598
    Mihir's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    . .
    Last edited by Mihir; 11-24-2011 at 03:32 PM.

  4. #2599
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mihir View Post
    Bug report: If there's 2 debuffs with the same name on the target, UnitDebuffID always returns the first one, even if you give the id of the second one.

    Example: using glyph of hemorrhage, you get 2 debuffs called hemorrhage on the target. the first one increases bleed damage taken by 30% for 60 seconds, the second is a 24 sec bleed. calling unitdebuffid with the id of the bleed will return the debuff details of the bleed damage taken debuff instead.
    I've noticed this as well with Chains of Ice. Even if you instruct PQR to look for the ID of the root, it will only return the snare debuff.

  5. #2600
    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'll look into adding a flag to the UnitDebuffID function to force an ID match, in a way that will not break old functionality (I believe it should be possible.)

    The original purpose of the UnitDebuffID function was just to simplify the use of UnitDebuff or UnitBuff which only accepts a name, so that you didn't have to do a:
    Code:
    local spellName = GetSpellInfo(ID)
    local unitDebuff = UnitDebuff("player", spellName)
    Every time you want to check if a debuff is up. It also prevented localization issues from those that would be lazy and just hardcode the english name into the script.

    I'll look into it.

    ---------- Post added at 10:06 AM ---------- Previous post was at 10:04 AM ----------

    Originally Posted by phantom325 View Post
    Blizz might be on to us. When I run PQR I get this in-game an error in game that says a bunch of stuff with some of the text including:

    PQR_Rotationbot
    priorityTable

    among other things.
    That is a Lua error. The profile you are using has syntax errors.

  6. #2601
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is anyone going to update the 1st page with all the latest .......... ?? As this thread is now very confusing where we are up 2 ? 174 pages in and it would take hours to actually find everything in that lot ..........

  7. #2602
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    Is anyone going to update the 1st page with all the latest .......... ?? As this thread is now very confusing where we are up 2 ? 174 pages in and it would take hours to actually find everything in that lot ..........
    Just use the search thread button and find what you are looking for.

  8. #2603
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can try to organize all of the profiles, but I thought most of the profile authors were moving to SVN anyway.

  9. #2604
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi

    I am tryng to adapt some code i seen here to make faerie fire apply only on druids and rogues but when i test on a dummy the rotation dont work at all

    im really new to this :P

    local FF, _, _, _, _, _, timer = UnitDebuffID("target", 91565)
    local FFstart, FFduration, FFenabled = GetSpellCooldown(16857)
    local FFcooldown = (FFstart + FFduration - GetTime())
    local class, token = UnitClass("target")
    local ps = {Druid, Rogue}

    for i,v in ipairs(ps) do
    if class == v then
    if FF == nil then
    if FFcooldown > 0 then
    return false
    else
    if class == v then
    return true
    end
    end
    end
    else
    return false
    end


    maybe someone could tell me whats wrong on this?

    Thank you! \o/

  10. #2605
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trulygangster View Post
    @kickmydog ahh see i wasnt aware of how the ability was supposed to operate so you have to have multishot and hit another monster for the pet to target another monster and if there isnt another monster it will just target the dead mob? am i on track?
    It auto assists your pet, so if your pet is not attacking anything there is nothing for it to assist. Hence why I suggest a multi-shot to get all the mobs on your pet agro table.

  11. #2606
    zeloch's Avatar Member
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    fast listed all pages... can't find fire mage rotation... anyone posted it? =)

  12. #2607
    Blehbot's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    79
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Kickmydog Any chance of adding a Masters Call to the pvp rotations?

  13. #2608
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cassrgs View Post
    Hi

    I am tryng to adapt some code i seen here to make faerie fire apply only on druids and rogues but when i test on a dummy the rotation dont work at all

    im really new to this :P

    local FF, _, _, _, _, _, timer = UnitDebuffID("target", 91565)
    local FFstart, FFduration, FFenabled = GetSpellCooldown(16857)
    local FFcooldown = (FFstart + FFduration - GetTime())
    local class, token = UnitClass("target")
    local ps = {Druid, Rogue}

    for i,v in ipairs(ps) do
    if class == v then
    if FF == nil then
    if FFcooldown > 0 then
    return false
    else
    if class == v then
    return true
    end
    end
    end
    else
    return false
    end


    maybe someone could tell me whats wrong on this?

    Thank you! \o/
    When did target dummies become rogues or druids? That's probably why it's not working.

    ---------- Post added at 09:14 AM ---------- Previous post was at 09:09 AM ----------

    Originally Posted by Blehbot View Post
    @Kickmydog Any chance of adding a Masters Call to the pvp rotations?
    Not at this time no. If you want to compile a list of all the possible snares I might.

  14. #2609
    starface's Avatar Member
    Reputation
    2
    Join Date
    Jun 2011
    Posts
    20
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    I can try to organize all of the profiles, but I thought most of the profile authors were moving to SVN anyway.
    svn ? what ?

  15. #2610
    lowrida's Avatar Member
    Reputation
    0
    Join Date
    Mar 2008
    Posts
    9
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by starface View Post
    svn ? what ?
    SVN is a type of program used to keep directories updated with a repository, in this case the PQR profiles.
    Bubba has a pretty informative tutorial on using a program called TortoiseSVN to keep your profiles up to date in his signature.

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 04:36 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search