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

Shout-Out

User Tag List

Page 238 of 731 FirstFirst ... 138188234235236237238239240241242288338 ... LastLast
Results 3,556 to 3,570 of 10955
  1. #3556
    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)
    can anybody help am on the pvp holy pally setup trying to add loh, health stone and rebuke. I copyed health stone from bubba's dk one does nothing tho
    Last edited by woppo; 12-29-2011 at 11:50 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #3557
    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 woppo View Post
    can anybody help am on the pvp holy pally setup trying to add loh, health stone and rebuke. I copyed health stone from bubba's dk one does nothing tho
    For Lay on Hands. Give this a try (Not been able to test)

    Code:
      -- Cast LoH if a players HP drops to 7% --
      <Ability>
        <Name>Lay on Hands</Name>
        <Default>false</Default>
        <SpellID>633</SpellID>
        <Actions></Actions>
        <Lua>
    
          if PQR_CustomTargetHP &amp;lt; 7 then
            return true
          end
    
        </Lua>
        <RecastDelay>100</RecastDelay>
        <Target>Custom</Target>
        <CancelChannel>False</CancelChannel>
      </Ability>
    For Healthstone. You could try this too.

    Code:
      -- Use Healthstone if im at 20% HP --
      <Ability>
        <Name>Heathstone</Name>
        <Default>false</Default>
        <SpellID></SpellID>
        <Actions>/use Healthstone</Actions>
        <Lua>
    
          local myHealth = 100 * UnitHealth(&amp;quot;player&amp;quot;) / UnitHealthMax(&amp;quot;player&amp;quot;)
    
          if myHealth &amp;lt; 20 then
            return true
          end
    
        </Lua>
        <RecastDelay>100</RecastDelay>
        <Target>Custom</Target>
        <CancelChannel>False</CancelChannel>
      </Ability>
    Im sure there is a better way of doing it. But not able to test anything ATM
    Last edited by Lofty; 12-29-2011 at 12:17 PM.

  3. #3558
    Seixalito's Avatar Private
    Reputation
    2
    Join Date
    Oct 2011
    Posts
    10
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Message: [string "..."] line 131:
    attempt to index field 'priorityTable' (a nil value)
    Debug:
    (tail call): ?
    [C]: ?
    [string "..."]:131: PQR_ExecuteBot()
    [string "..."]:40:
    [string "..."]:23

    Got this when i try to use it on WoW 3.3.5, using xelpel ret paladin profile. Anyone can help me?

  4. #3559
    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)
    My profile will not work on 3.3.5. I simply provided the offsets so that people who really wanted to could create their own profiles.

  5. #3560
    Seixalito's Avatar Private
    Reputation
    2
    Join Date
    Oct 2011
    Posts
    10
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TY. I am new at this. i will search and try to find how to find spellid and will glady start doing some 3.3.5 profile for paladin and warlock.

    PS. Found addon to help me in that. Hope i can make some profiles to share with you.

    Thank you all for all the help
    Last edited by Seixalito; 12-29-2011 at 05:18 PM.

  6. #3561
    Tyron1989's Avatar Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Guys,

    here is part of Ash's druid healing profile for lifebloom:

    local CastOn = "focus"
    local Name,_,_,Stacks,_,_,Duration = UnitBuffID(CastOn, 33763)

    -- Set target to heal, defa/focuults to focus, player if none found
    -- Also allows for casting on custom target when in tree of life
    if UnitAura("player", 33891) and
    UnitExists(PQR_CustomTarget) and
    Name ~= nil and
    Stacks == 3 and
    Duration - GetTime() > 3
    then
    CastOn = PQR_CustomTarget
    end

    -- Basic exists, not dead, is friendly, in range and not LoS checks
    if spellCheck(33763, CastOn) == 1
    then

    -- Get the LB stacks/duration
    local _,_,_,Stacks,_,_,Duration = UnitBuffID(CastOn, 33763)

    -- Check player is not holding right shift to let it bloom
    if IsRightAltKeyDown() == nil then

    -- Check LB stack doesn't exist, is less than 3 or is about to expire
    if Stacks == nil or
    ( Stacks ~= nil and Stacks < 3 ) or
    ( Stacks ~= nil and Duration - GetTime() <= 3 )
    then

    -- Cast it!
    PQR_CustomTarget = CastOn
    return true

    end

    end

    end
    does anyone know what to add so it'll cast on player with: Defence stance(warriors) - Righteus Defence (paladins) - Bear Form (Druid) - Blood Pressance (DK)?

    is this possbile?

  7. #3562
    Eff's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tyron1989 View Post
    does anyone know what to add so it'll cast on player with: Defence stance(warriors) - Righteus Defence (paladins) - Bear Form (Druid) - Blood Pressance (DK)?

    is this possbile?
    It's possible, but it'd be very clunky to do it since you'd need to loop the raid looking for buffs everytime the script is run. I'll show you how to do it if you really must, but I honestly don't know why you'd want to do it that way since even if you just target a mob it'll auto-focus the current tank on it by default otherwise you can set a focus target manually.

    As for the problem you posted a page or so back about Swiftmend not being used, I'm totally aware of that issue and it will be fixed in a release tomorrow once I'm done testing a few other things included in it

  8. #3563
    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)
    how can i get this to work ?
    Code:
    function CheckMagic(unitid)
      local i = 1
      local buff,_,_,count,bufftype,duration = UnitDebuff(unitid, i)
      while buff do
        if bufftype == "Magic" or bufftype == "Poison" or bufftype == "Disease" 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 UnitIsDeadOrGhost(member) == nil 
      and PQR_IsOutOfSight(member) == false
    then
        if CheckMagic(member) then PQR_CustomTarget = member end
    end
    end
    
    local buff = { 49203, 19386, 3355, 44572, 118, 82691,31661,853,20066,10326,605,64044,8122,9484,15487,6789,5782,5484,6358,30283,24259,31117,18498,33395,122,83302,55080}
    for i,v in ipairs(buff) do 
    if UnitDebuffID(PQR_CustomTarget,v) then hbuff = 1 end
    end
    
     if hbuff and CheckMagic(PQR_CustomTarget) and UnitDebuffID(PQR_CustomTarget,30108) == nil then return true 
    end

  9. #3564
    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 imdasandman View Post
    This....
    The spells that have the click>mouseover where you want ability placed>click again to set it.
    Spell that I know of and I am sure there is more:

    Death and decay
    Rain of fire
    Summon infernal
    Trap launcher
    The Mage circle of ice and fire ape spell.
    Druids mushrooms
    Rogues distraction
    All I can think of that uses the click>mouseover>set


    Sent from my SAMSUNG-SGH-I997 using Tapatalk
    In HB the code to do this for DnD came from the singular layout. it will drop the dnd on the target location
    Code:
    Spell.CastOnGround("Death and Decay", ret => StyxWoW.Me.CurrentTarget.Location
    StyxWoW.Me is a library that HB calls to for behaviors I am wanting to know how to get PQR to drop a DnD on the target location without using a mouseover if it is possible.

  10. #3565
    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)
    Can someone help me figure out why these abilities work flawlessly in the Paladin Holy profiles but in the Dragonfire ret event based one they do not? I am not sure if there is a code built in that I do not see for the auras but I would like them to work for this profile as well.

    Concentration Aura
    Code:
    local Aura = GetShapeshiftForm("player")
    
    if Aura ~= 3 and IsMounted() == nil then
    	return true
    end
    Crusader Aura
    Code:
    local Aura = GetShapeshiftForm("player")
    
    if Aura ~= 5 and IsMounted() then
    	return true
    end
    Of course I would like to add a couple other auras to use but I can do that on my own.

  11. #3566
    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)
    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.

  12. #3567
    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)
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)

    xeron301211PQRProfiles.zip

    - All PvE profiles include code to autoclick extra button on Ultraxion fight
    - Some fixes here and there
    - Most code was rewritten, maybe new bugs are introduced

    All filenames are changed since last release, delete old profiles starting with xrn*.* before copy this ones.

  13. #3568
    PureLife's Avatar Corporal
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    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.
    Hi Lofty,

    Thanks for the great updates, apparently there are some problems working with all versions of PQR, mainly 1.1 and 1.1.1

    It says the xml is not well formatted and doesn't appear in abilities page, I'm still trying to find out what's wrong though, It'll take me some time.

    Just thought that I'd highlight you about it first.

    Regards

  14. #3569
    DKVance73's Avatar Sergeant
    Reputation
    6
    Join Date
    Aug 2011
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Profile updates, package includes:
    Mage (Frost PvP, Fire PvE, Arcane PvE)
    Priest (Holy PvE, Discipline PvP)
    Hunter (MM PvE)
    Warrior (Protection PvE, Fury PvE)
    Rogue (Combat PvE, Subtlely PvP)
    Death Knight (Frost PvP)

    xeron301211PQRProfiles.zip

    - All PvE profiles include code to autoclick extra button on Ultraxion fight
    - Some fixes here and there
    - Most code was rewritten, maybe new bugs are introduced

    All filenames are changed since last release, delete old profiles starting with xrn*.* before copy this ones.
    Hey there Sheuron, good work. Survival seems to be pulling the top DPS these days, any chance you're working on that or a BM spec? I use one already but would love to see your take.

  15. #3570
    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 PureLife View Post
    Hi Lofty,

    Thanks for the great updates, apparently there are some problems working with all versions of PQR, mainly 1.1 and 1.1.1

    It says the xml is not well formatted and doesn't appear in abilities page, I'm still trying to find out what's wrong though, It'll take me some time.

    Just thought that I'd highlight you about it first.

    Regards
    Does it say anything else with the error.

    Strange tho as i tested it in our raid last night, and the only change before uploading it was done today by spacing out the coding to make it neater/easyer to read/edit.

    While changing the formating i probably made a typo somewhere. Ill try and find it now

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 01:32 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