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

User Tag List

Page 372 of 731 FirstFirst ... 272322368369370371372373374375376422472 ... LastLast
Results 5,566 to 5,580 of 10955
  1. #5566
    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)
    Anyone see the problem with this code below? Tried it in debug mode and it stops the rotation but gets no lua error. Just looking for a way to remove curse as a mage.

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse"  then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCursemember) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true end
    if CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,34941) == nil then return true end

    [BETA] PQRotation - an automated ability priority queue.
  2. #5567
    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)
    I've been going through every hunter profile that has been written and I was wondering if anyone has found a mend pet code that works.

    I've tested Sheuron, Crystal_tech, Cokx and my own. For some reason it just won't cast mend pet at all.

    spellid is 136
    Target - "pet" although some profiles have "target"

    Code:
    if UnitExists("pet") 
    and UnitIsDead("pet") == nil 
    and PQR_IsOutOfSight("pet") == false
    and 100 * UnitHealth("pet") / UnitHealthMax("pet") < 80 
    and UnitBuffID("pet",136) == nil 
    and UnitAffectingCombat("player") == nil 
    then return true end
    Some variant of the above code. None of them work as far as I've been able to ascertain.

    edit:

    Fixed by removing the spell id and setting to 0. Then putting a macro in to /cast Mend Pet. I still do not understand why it won't cast the spell code 136 though.
    Last edited by kickmydog; 02-09-2012 at 01:31 PM.

  3. #5568
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by robinmiles1 View Post
    Is there a way to reapply BoD when there is <15 seconds left on it? current code is :

    --cast Bane of Doom if boss level and Bane not up already.
    local baneDoomDebuff = UnitDebuffID("target", 603, "PLAYER")

    local levelCheck = UnitLevel("target")
    if levelCheck ~= -1 then
    --boss level returns as -1
    return false
    end

    if baneDoomDebuff == nil then
    return true
    end
    local debuffDoom, _, _, _, _, _, DoomExpire = UnitDebuffID("target", 603, "PLAYER")
    local levelCheck = UnitLevel("target")
    if levelCheck == -1 then
    if debuffDoom == nil then
    return true
    else
    DoomExpire = DoomExpire - GetTime()
    if DoomExpire < 13 then
    return true
    end
    end
    end

  4. #5569
    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)
    Originally Posted by Valma View Post
    Hey guys,as I promised - I started svn and uploaded there my advanced warlock profile.

    It's not fully done yet!!!Will test it today and hopefully got it to work with normal rotation tomorrow(will cast on target,BoH on focus,and cast on mouseover).

    Autoswitches and priorities for EVERY boss fight in DS will come a bit later.Need to test the logic(coz its ****ing as complicated as awesome it is) on normal rotation before go in-dept.

    G.code - valma-pqr-profiles - Advanced PQR profiles - Google Project Hosting

    There is no profile to download yet, i cant wait to test it out Warlocks are not getting a lot of pqr love these days

    Edit* found the code going to test it thx
    Last edited by Phishstick; 02-09-2012 at 02:23 PM.

  5. #5570
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi guys i realy need your help becouse i have finish my money and start to play on private server with 13623 wow version
    i use PQR and i realy need a new offset for this server version can pls someone help me?

  6. #5571
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Devolenok View Post
    can u recommend the spell id site to use?
    thx
    idTip : Buff, Debuff, Spell : World of Warcraft AddOns

  7. #5572
    Devolenok's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @sheuron
    thx a lot))

  8. #5573
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meatglue View Post
    Anyone see the problem with this code below? Tried it in debug mode and it stops the rotation but gets no lua error. Just looking for a way to remove curse as a mage.

    Code:
    function CheckCurse(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Curse"  then return true end
        i = i + 1;
        buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      end
    end
    
    
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    
    if GetNumRaidMembers() > 0 then
      group = "raid"
      members = GetNumRaidMembers()
    end
    
    for i = 1, members, 1 do
      local member = group..tostring(i)
      if UnitInRange(member) 
      and UnitIsCharmed(member) == nil
      and UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false then
        if CheckCursemember) then PQR_CustomTarget = member end
      end
    end
    
    if CheckCurse(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true end
    if CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,34941) == nil then return true end

    Hum, I would say that you have forgotten a ( in the if CheckCurse... I think it should be:
    Code:
    if CheckCurse(member) then PQR_CustomTarget = member end

  9. #5574
    popeofdope's Avatar Sergeant
    Reputation
    11
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by robinmiles1 View Post
    Is there a way to reapply BoD when there is <15 seconds left on it? c
    Depending on your spec, you probably don't want to do this. Applying it as soon as it drops off makes sure your 1st, 3rd, 5th etc BoD always syncs up with demon soul. Refreshing it every 45 seconds desyncs BoD from demon soul which is a loss of DPS.

  10. #5575
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LeetJerks Masterfrost profile with my edits done to which includes Gorthaks mouseover DnD code(use left control), shift to pause(borrowed from BuBaBa911 and a modified Darksim code to steal Hagara's ice thing spell for uber damage . Just set Hagara as your focus target and it will auto steal than all you do is cast it from their with the button on your action bar since it is off the GCD.( I usually pop it on an ice tomb or the ice crystals during the first ice phase.)

    Attachment 6088
    Attachment 6089

    here are mediafire links while we wait for the profiles are approved....
    http://www.mediafire.com/download.php?6dk46j956ned3im
    http://www.mediafire.com/download.php?wwt8rczzis1ael3
    Last edited by imdasandman; 02-09-2012 at 05:56 PM.

  11. #5576
    nertharul's Avatar Member
    Reputation
    3
    Join Date
    Apr 2010
    Posts
    72
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    LeetJerks Masterfrost profile with my edits done to which includes Gorthaks mouseover DnD code(use left control), shift to pause(borrowed from BuBaBa911 and a modified Darksim code to steal Hagara's ice thing spell for uber damage . Just set Hagara as your focus target and it will auto steal than all you do is cast it from their with the button on your action bar since it is off the GCD.( I usually pop it on an ice tomb or the ice crystals during the first ice phase.)

    Attachment 6088Attachment 6089
    cant wait to try ur awsome modifications to those profiles
    Last edited by nertharul; 02-09-2012 at 04:27 PM.

  12. #5577
    Sophronius69's Avatar Private
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any way you can PM those imdasandman? can't get them due to them waiting for approval. Thanks for posting them though can't wait to test them out +rep

  13. #5578
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Phishstick View Post
    There is no profile to download yet, i cant wait to test it out Warlocks are not getting a lot of pqr love these days

    Edit* found the code going to test it thx
    I tried loading the profiles up but they wont come up on my pqr
    If someone could help me out or post valma's profiles would appreciate it.
    Last edited by saga3180; 02-09-2012 at 05:52 PM.

  14. #5579
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sophronius69 View Post
    Any way you can PM those imdasandman? can't get them due to them waiting for approval. Thanks for posting them though can't wait to test them out +rep
    I will load them up somewhere and drop the link here

    Sent from my SAMSUNG-SGH-I997 using Tapatalk

    edit: i posted the DL links from mediafire on my original post enjoy.
    Last edited by imdasandman; 02-09-2012 at 05:57 PM.
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  15. #5580
    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)
    I've updated my TG profile with a new advanced feature, it will now calculate your expected rage per second in realtime and adjust heroic strikes accordingly. It's based off weapon speed + hit chance. This means if you have blood lust for example, your rage per second will be much higher and it'll cast heroic strike much earlier to ensure you do not go over 100 rage during its cooldown. It also uses an entirely seperate rotation for execute phase, landsouls advanced execute. You must set your latency tolerance in game to 250 + your home + world latency for the advanced execute to work.

    Right now it's based off a MH + OH base speed of 3.6, in the future I'll have it detect and set it according to your personal setup.

    You have to run the reset profile once before you run the main profile, otherwise it won't work. If any other problems come up just run the reset profile again.

    BossTG3.0.rar


    This has not been thoroughly tested so please report any bugs / issues.
    Last edited by Bossqwerty; 02-09-2012 at 05:38 PM.

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 03:52 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