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

User Tag List

Page 685 of 731 FirstFirst ... 185585635681682683684685686687688689 ... LastLast
Results 10,261 to 10,275 of 10955
  1. #10261
    taker's Avatar Member
    Reputation
    10
    Join Date
    Jul 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    ah good point, i should be checking that someone else doesn't need a big heal before wasting a GCD refreshing on a tank, and i should also be checking the focus.

    so try this.


    Code:
    local _,lcd =  GetSpellCooldown(61295)
         
    if lcd == 0 and IsUsableSpell(61295) then
      if (member[lowest].health > ghwhealth ) then
        if UnitExists("focus") then
          local _,_,_,_,_,_,ah = UnitBuffID("focus")                           <<<<<<<< id of the buff missing ?
          local _,_,_,_,_,_,rt = UnitBuffID("focus")                             <<<<<<<<
          if isvalidhealtarget("focus") and ah < 6 and rt < 6 then
            SilentCast(61295,"focus")
            return true
          end
        else
          for k,v in ipairs(tanks) do
            local _,_,_,_,_,_,ah = UnitBuffID(member[v].name, 105284)
            local _,_,_,_,_,_,rt = UnitBuffID(member[v].name, 61295)
            if ah == nil then ah = 0 end
            if rt == nil then rt = 0 end
            if isvalidhealtarget(member[v].name) and ah < 6 and rt < 6 then
              SilentCast(61295,member[v].name)
              return true
            end
          end
        end
      end  
      if rttarget == nil then rttarget = 0 end
      if member[rttarget].health < rthealth then
        if isvalidhealtarget(member[rttarget].name) then  
           SilentCast(61295,member[rttarget].name)
            return true
         end
      end
    end
    Thank you for your answer, i dont see a improvement in the code you posted sorry.
    The local _,_,_,_,_,_,expirationTime do not work, the script refresh the riptide only at 0 (nil) its what i need to make it work (pqr bug ? )

    Nevermind here the codes for riptide i try.

    Code:
    local cdriptide = PQR_SpellAvailable(61295)
    --rt on raid if valid rt target (less than 90%)
    if cdriptide and mana >= 2202 and rttarget ~= nil then
        if member[rttarget].health <= rthealth then
            if isvalidhealtarget(member[rttarget].name) then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    --rt & ancestral vigor on focus if less than 6sec
    if cdriptide and mana >= 2202 and (member[lowest].health >= 45 ) then
        local _,_,_,_,_,_,ah = UnitBuffID("focus", 105284)
        local _,_,_,_,_,_,rt = UnitBuffID("focus", 61295)
        if ah == nil then ah = 0 end
        if rt == nil then rt = 0 end
        if UnitExists("focus") and isvalidhealtarget("focus") and ah < 6 and rt < 6 then
            SilentCast(61295,"focus")
            return true
        end
    end
    --rt for tidal waves if less than 2sec (or 1)
    local _,_,_,_,_,_,tw = UnitBuffID("player", 53390)
    if tw == nil then tw = 0 end
    if cdriptide and mana >= 2202 and rttarget ~= nil then
        if member[rttarget].health >= rttwhealth then
            if isvalidhealtarget(member[rttarget].name) and tw < 2  then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    
    --rt for trinket spirit from spine (for not lose the 10stacks)
    if cdriptide and mana >= 2202 and rttarget ~= nil then
        local _,_,_,_,_,_,_,_,em = UnitBuffID("player", 107962)
        if em == nil then em = 0 end
        if member[lowest].health >= rttwhealth then
            if isvalidhealtarget(member[rttarget].name) and em < 3 then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    and here the old but good one:

    Code:
    local cdriptide = PQR_SpellAvailable(61295)
    ---rt on raid
    if cdriptide and mana >= 2202 and rttarget ~= nil then
        if member[rttarget].health <= rthealth then
            if isvalidhealtarget(member[rttarget].name) then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    ---rt on focus
    if cdriptide and mana >= 2202 and (member[lowest].health >= ghwhealth ) then
        if UnitExists("focus") and isvalidhealtarget("focus") and not UnitBuffID("focus", 61295) then
            SilentCast(61295,"focus")
            return true
        end
    end
    ---rt for tidal waves
    if cdriptide and mana >= 2202 and UnitBuffID("player", 53390) == nil and rttarget ~= nil then
        if member[rttarget].health >= rttwhealth then
            if isvalidhealtarget(member[rttarget].name) then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    Last edited by taker; 04-24-2012 at 01:23 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #10262
    taker's Avatar Member
    Reputation
    10
    Join Date
    Jul 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    Oh yeah i'm thinking that i could code in a way to save a bunch of players in your raid to a custom group by selecting them and then hittting a keybind, and then being able to switch between healing everyone in the raid and just these players. so you could set it to the tanks, or just your party or something for that hard mode boss where you do that. would people find this useful? i don't do hardmode stuff i'm pretty casual, and i can prettty much /follow afk and top the meters in lfr
    Good idea (i have a ignore players function from Eff druid profile), you can use this script too for burst heal a mouseover target during fight.

    Code:
    local hasMouseover = UnitExists("mouseover")
    local overHP = UnitHealth("mouseover") / UnitHealthMax("mouseover") * 100
    local cdriptide = PQR_SpellAvailable(61295)
    
    ---healing surge
    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
        if hasMouseover then
            if moving == 0 and mana >= 5946 and isvalidhealtarget("player",mouseover) and overHP <= hshealth then
                SilentCast(8004,"mouseover")
                return true
            end
        end
    end
    
    ---riptide
    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
        if hasMouseover then
                if cdriptide and moving == 0 and mana >= 2202 and isvalidhealtarget("player",mouseover) then
                    SilentCast(61295,"mouseover")
                    return true
                end
            end
        end
    ---great healing wave
    if IsLeftAltKeyDown() and GetCurrentKeyBoardFocus() == nil then
        if hasMouseover then
            if moving == 0 and mana >= 7268 and isvalidhealtarget("player",mouseover) then
                SilentCast(77472,"mouseover")
                return true
            end
        end
    end
    Last edited by taker; 04-24-2012 at 01:22 AM.

  3. #10263
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    Oh yeah i'm thinking that i could code in a way to save a bunch of players in your raid to a custom group by selecting them and then hittting a keybind, and then being able to switch between healing everyone in the raid and just these players. so you could set it to the tanks, or just your party or something for that hard mode boss where you do that. would people find this useful? i don't do hardmode stuff i'm pretty casual, and i can prettty much /follow afk and top the meters in lfr
    That sounds very useful to me, also I am wondering if there could be a better way to handle the totems. Currently you and Sheuron ( both making awesome profiles btw !! Thanks so much for the work ) drop and remove them based on combat detection and well it really looks kinda strange when you run and are in combat already and start to drop totems already. It is a bit hard to explain what I mean but I think everyone using those profiles in instances for example knows what I mean.

  4. #10264
    Andilizer's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just wanted to thank each and every one of the profile writers here on ownedcore.com. You have truly made WoW that much more enjoyable for me with PQRotation.

    I do, however, have a quick question.

    I play with a latency of around 200. Do I adjust the Ability Check Delay to match this? Also, do I match WoW's Custom Lag Tolerance to 200 also?

    Thank you in advance for any help you can provide.

  5. #10265
    dariusz's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Razzaxius View Post
    Guys, are you sure PRQ cannot be detected by Blizz? I just had my second WoW account permabanned for using third party software, and the only thing i ever used on it is PQR....

    So thats 2 accounts permabanned now on wich both i only ever used was PQR.... the second account was even fairly new and never received a warning or anything
    here : http://www.ownedcore.com/forums/mmo-...ml#post2223697

    you are saying you were using "Thenoobbot for gather stuff" , this is probabily the cause of you ban rather than pqr.

  6. #10266
    taker's Avatar Member
    Reputation
    10
    Join Date
    Jul 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    Oh yeah i'm thinking that i could code in a way to save a bunch of players in your raid to a custom group by selecting them and then hittting a keybind, and then being able to switch between healing everyone in the raid and just these players. so you could set it to the tanks, or just your party or something for that hard mode boss where you do that. would people find this useful? i don't do hardmode stuff i'm pretty casual, and i can prettty much /follow afk and top the meters in lfr
    That would be cool to have a hotkey when pressed, we mouseover multiple players to insert in a table, when the key is release the group is created and a other keybind for switch between raid healing or custom group healing.
    Last edited by taker; 04-24-2012 at 07:18 AM.

  7. #10267
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Onya:

    Often the healing assignment is not random or players but rather groups of people. So i would suggest that it should be possible to select group 1 to 5 as assignment and also tank healing. So pretty much just add a + plus ranking based on the group or healing role.

    so if i select tank healer i pretty much set +100 wieght on the tanks, if i select group 1 and 2 then i get +50 on those members and i i have a FFA healing then i should just add weight to tanks, myself and perhaps the member who is currently being targetted by the boss1.
    Looking for exploiters and botters to Elder Scrolls Online.

  8. #10268
    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 shortround8 View Post
    @Xelper or whoever can help me

    Whenever someone casts, the auto interrupt seems to to lag WoW bad, and sometimes it doesn't even interrupt. I'm currently using Kaolla's interrupt list with 65% cast time til kick. Can you help me out?
    That's odd; I've never experienced that issue. Is there a second interrupt within the actual rotation you're using?

  9. #10269
    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)
    Originally Posted by Andilizer View Post
    I just wanted to thank each and every one of the profile writers here on ownedcore.com. You have truly made WoW that much more enjoyable for me with PQRotation.

    I do, however, have a quick question.

    I play with a latency of around 200. Do I adjust the Ability Check Delay to match this? Also, do I match WoW's Custom Lag Tolerance to 200 also?

    Thank you in advance for any help you can provide.
    on wowinterface search for the addon autolag tolerance its a nice addon that updates that setting for you. as for lag try the program tcp optimizer or try Leatrix latency fix Leatrix Latency Fix : WoW Tools & Utilities : World of Warcraft AddOns

    I personally run boostspeed's internet optimizer and my lag was 300ish now its down to 50~60ish.

    Please if someone helped you donate rep to them.

  10. #10270
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    That sounds very useful to me, also I am wondering if there could be a better way to handle the totems. Currently you and Sheuron ( both making awesome profiles btw !! Thanks so much for the work ) drop and remove them based on combat detection and well it really looks kinda strange when you run and are in combat already and start to drop totems already. It is a bit hard to explain what I mean but I think everyone using those profiles in instances for example knows what I mean.
    yeah i get what you're saying, auto dropping totems the second combat starts isn't always quite right. maybe wait 10 seconds... and being able to drop totems before the fight starts and not have them cancelled would be better. i generally disable the rotation, drop totems, and enable as the fight starts.
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  11. #10271
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by taker View Post
    Thank you for your answer, i dont see a improvement in the code you posted sorry.
    The local _,_,_,_,_,_,expirationTime do not work, the script refresh the riptide only at 0 (nil) its what i need to make it work (pqr bug ? )

    and here the old but good one:

    Code:
    local cdriptide = PQR_SpellAvailable(61295)
    ---rt on raid
    if cdriptide and mana >= 2202 and rttarget ~= nil then
        if member[rttarget].health <= rthealth then
            if isvalidhealtarget(member[rttarget].name) then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    ---rt on focus
    if cdriptide and mana >= 2202 and (member[lowest].health >= ghwhealth ) then
        if UnitExists("focus") and isvalidhealtarget("focus") and not UnitBuffID("focus", 61295) then
            SilentCast(61295,"focus")
            return true
        end
    end
    ---rt for tidal waves
    if cdriptide and mana >= 2202 and UnitBuffID("player", 53390) == nil and rttarget ~= nil then
        if member[rttarget].health >= rttwhealth then
            if isvalidhealtarget(member[rttarget].name) then
                SilentCast(61295,member[rttarget].name)
                return true
            end
        end
    end
    uh, this doesn't look like my code? i've never checked for tidal waves... or used PQR_SpellAvailable
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  12. #10272
    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)
    Originally Posted by crystal_tech View Post
    demo spec is up next. only thing i don't like is demon swapping but i'll try some ways of putting it in there.
    Hello crystal_tech

    Thank you for your great work cant wait for your demo spec :-) your downloads are in your sig but they just take you to the text do i just copy that into a txt file?

    Thanks in advance :-)
    Last edited by Techz; 04-24-2012 at 12:24 PM.

  13. #10273
    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 kclux View Post
    That sounds very useful to me, also I am wondering if there could be a better way to handle the totems. Currently you and Sheuron ( both making awesome profiles btw !! Thanks so much for the work ) drop and remove them based on combat detection and well it really looks kinda strange when you run and are in combat already and start to drop totems already. It is a bit hard to explain what I mean but I think everyone using those profiles in instances for example knows what I mean.
    Prolly you hace old versión of the profile. I think already fixed that first time saw it happend. On automode the profile only set totems when the player is not moving.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  14. #10274
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    Oh yeah i'm thinking that i could code in a way to save a bunch of players in your raid to a custom group by selecting them and then hittting a keybind, and then being able to switch between healing everyone in the raid and just these players. so you could set it to the tanks, or just your party or something for that hard mode boss where you do that. would people find this useful? i don't do hardmode stuff i'm pretty casual, and i can prettty much /follow afk and top the meters in lfr
    :-O stealing my idea for H YorSahj!!! :'(

    j/k i toyed with this idea but decided that people would either forget or something and come blame me for why they weren't healing x player in y group XD

    however i'd love to code this and send it to u and see ur code for it and see if we can't come up with a sick code together
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  15. #10275
    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)
    Originally Posted by Techz View Post
    Hello crystal_tech

    Thank you for your great work cant wait for your demo spec :-) your downloads are in your sig but they just take you to the text do i just copy that into a txt file?

    Thanks in advance :-)
    use pqr's download profile in the rotation editor.

    Please if someone helped you donate rep to them.

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:47 PM. 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