PQR - Rotation Bot menu

User Tag List

Page 39 of 779 FirstFirst ... 35363738394041424389139539 ... LastLast
Results 571 to 585 of 11681
  1. #571
    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)
    Xelper: would you be able to implement a function to target by guid? Thinking that the object manager for PQR_UnitInfo etc might make it easy to do?
    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

    PQR - Rotation Bot
  2. #572
    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 onya View Post
    Xelper: would you be able to implement a function to target by guid? Thinking that the object manager for PQR_UnitInfo etc might make it easy to do?
    can't you set PQR_customtarget to anything you wanted?

    Please if someone helped you donate rep to them.

  3. #573
    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 crystal_tech View Post
    can't you set PQR_customtarget to anything you wanted?
    i want to be able to do something like

    originaltargetguid = UnitGUID("target")

    then targetnearestenemy a few times

    then PQR_TargetUnit(originaltargetguid)

    the idea is to automatially chain lightning if there's enough additional targets near the target.
    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

  4. #574
    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 Xelper View Post
    IIRC a recast delay will only be applied if a spell ID is being cast.
    Good to know
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  5. #575
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lf Beta Offsets

  6. #576
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by supermann View Post
    try the one in my signature

    Its an edit of Sheuron`s - if u like rep him too pls
    This isn't a bad profile, I would suggest putting Thunderstorm on a modifier key to activate it sometimes you need to use those at specific times for specific reasons. It also seems to burn through mana which I attribute to purge still pretty solid. Also is there a reason you setup Unleashed Elements only on movement? Is that personal preference when you want to control to use it before a LvB? I can't seem to find any other reason you would do it that way outside of personal reasons.
    Last edited by js1974; 05-24-2012 at 06:26 AM.

  7. #577
    smaling's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Xelper..

    Have you 4.0.6 build 13623. offset? Or can you make one for us Pls.

    thanks for the effort..

    Gtzzz Raymond

  8. #578
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated my Sub Profile

    Updates:
    Code:
    - Hemorrhage Glyph only
    - Honor Among Thieves function
    - Shadow Dance and Vanish now pool energy
    - Boss/Elite level check for cooldowns
    Link in sig.

  9. #579
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone wanna take a stab at this Ability? It should only cleanse the ID's in the debuff group but it cleanses everything.

    Code:
    PQR_CustomTarget = "player"
    local group = "party"
    local members = GetNumPartyMembers()
    local debuff = { 5782, 61305, 28272, 61721, 61780, 28271, 24259, 31117 }
    local targetdebuff = nil
    local havedebuff = 0
    
    
    
    if GetNumRaidMembers() > 0 then
        group = "raid"
        members = GetNumRaidMembers()
    end
    
    
    
    
    for i = 1, members, 1 do
    local member = group..tostring(i)
        if UnitInRange(member) and UnitIsFriend("player", member) and UnitIsDeadOrGhost(member) == nil  then
            for i,v in ipairs(debuff) do
                if UnitDebuffID(member,v) then 
                    havedebuff = 1
                    targetdebuff = PQR_CustomTarget
                        if havedebuff == 1 then
                            havedebuff = 0
                            return true
                    
                        end             
                end
            end
        end
    end
    @ Bubba 1.8.1 of the holy Profile after removing all cleanse abilities from the rotation is still trying to cleanse things, Is it in the special abilities as well?

  10. #580
    Scubaman's Avatar Member
    Reputation
    5
    Join Date
    Nov 2011
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone able to help with my error?
    http://www.ownedcore.com/forums/worl...ml#post2260743 (PQR - Rotation Bot)
    I really want to use this thing but cant

  11. #581
    Lexi777's Avatar Member
    Reputation
    8
    Join Date
    May 2012
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @deadpanstiffy

    Is your rogue profile PvE only? or pvp

  12. #582
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lexi777 View Post
    @deadpanstiffy

    Is your rogue profile PvE only? or pvp
    PvE, but the trinket abilities won't use your PvP trinket during Shadow Dance.

    I've used it in PvP, note that it will always use a 5 combo point finishers in this order: Slice and Dice, Recuperate, Rupture, Eviscerate. Also note if you remove Rupture from the rotation it will never use Eviscerate.

  13. #583
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ehh... To anyone using my Shadow Priest profile, when Bubba updated the profiles and the data file, he miss-spelled a few things. I'll have it fixed in the morning.

  14. #584
    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)
    ..... Whoops goes to show I shouldn't try to do a rush job when someone is waiting for an update on raid day XD

    Sent from my ADR6400L using Tapatalk 2
    ^0^Team Nova's PQR NCC ^0^

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

  15. #585
    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)
    Originally Posted by Scubaman View Post
    Anyone able to help with my error?
    http://www.ownedcore.com/forums/worl...ml#post2260743 (PQR - Rotation Bot)
    I really want to use this thing but cant
    Are you on a non-english Windows? Can you delete PQR and do a fresh install? Try moving it to a different directory (C:\PQR\) or something

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 03:53 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