PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 472 of 779 FirstFirst ... 372422468469470471472473474475476522572 ... LastLast
Results 7,066 to 7,080 of 11681
  1. #7066
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Beelzix View Post
    would anyone happen to have a link to a pvp mistweaver prof?
    WoW Bot Maps And Profiles

    You could find what you look after there.

    PQR - Rotation Bot
  2. #7067
    magenpriest's Avatar Banned
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,
    For auto copy Lightning Fist from Feng the Accursed (MSV). I have an idea, just wanna focus my OT and target Feng. When Feng channel Lightning Fist (target) on my OT (focus), then auto click ExtraActionButton1. So i have 2 questions:
    1. How to get channel info on boss and run macro ExtraActionButton1 on focus target (OT)?
    2. How to check my ExtraActionButton1 spell info so make sure this spell is Lightning Fist to auto cast on boss with Epicenter spell?

    Example code:
    PHP Code:
    local spellLightningFists GetSpellInfo(106371)
    local channelSpell____endTime UnitCastingInfo("boss1")
    if 
    channelSpell ~= nil and channelSpell == spellLightningFists then
           RunMacroText
    ("/click ExtraActionButton1")
           return 
    true
    end 

  3. #7068
    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)
    What happened to the healer love ? We used to have several awesome healing profile and now I think there is not even one ( paid or free ) that is up to date with things like Tsulong and the current bad encounter debuffs. Or is there one that I am missing ?

  4. #7069
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by magenpriest View Post
    Hello,
    For auto copy Lightning Fist from Feng the Accursed (MSV). I have an idea, just wanna focus my OT and target Feng. When Feng channel Lightning Fist (target) on my OT (focus), then auto click ExtraActionButton1. So i have 2 questions:
    1. How to get channel info on boss and run macro ExtraActionButton1 on focus target (OT)?
    2. How to check my ExtraActionButton1 spell info so make sure this spell is Lightning Fist to auto cast on boss with Epicenter spell?

    Example code:
    PHP Code:
    local spellLightningFists GetSpellInfo(106371)
    local channelSpell____endTime UnitCastingInfo("boss1")
    if 
    channelSpell ~= nil and channelSpell == spellLightningFists then
           RunMacroText
    ("/click ExtraActionButton1")
           return 
    true
    end 

    Not sure if this will work, used Xelpers code and redid it for Feng.

    PHP Code:
    for i=1,do
        
    local bossCheck "boss"..i
        
    if UnitExists(bossCheckthen
            local npcID 
    tonumber(UnitGUID(bossCheck):sub(6,10), 16)
            
    local bossCasting,_,_,_,_,castEnd UnitCastingInfo(bossCheck)
            
            if 
    npcID == 60009 then --Feng the Accursed
            
                    
    --grab spell names for abilities:
                    
    local lightningFists GetSpellInfo(116157)
                    
    local epiCenter GetSpellInfo(116018)    
                    
                    --
    intercept the spell if casting Lightning Fists
                    
    if bossCasting == lightningFists then
                        TargetUnit
    (focus)
                        --
    Press the ExtraActionButton (Nullification Barrier)
                        
    RunMacroText("/click ExtraActionButton1")
                    
    end
                    
                    
    --interrupt Feng if casting Epicenter
                    
    if bossCasting == epiCenter then
                        TargetUnit
    (bosscheck)
                        --
    Press the ExtraActionButton (Lightning Fists)
                        
    RunMacroText("/click ExtraActionButton1")
                    
    end 
    feel free to test it out.

  5. #7070
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    only one is nova's resto drood , and also there is an edit of nova's holy pala to work with eternal flame mode

  6. #7071
    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 kclux View Post
    What happened to the healer love ? We used to have several awesome healing profile and now I think there is not even one ( paid or free ) that is up to date with things like Tsulong and the current bad encounter debuffs. Or is there one that I am missing ?
    Since I manually heal, I haven't really looked into encounter based code. I am planning on adding it in my next resto druid update tho (to some extent)

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

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

  7. #7072
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey everyone, I just uploaded a significantly updated/upgraded version of my pre-MoP retribution profile. If interested, please visit this thread.

    Please leave constructive feedback/suggestions since I don't play ret at the moment :P

    Cheers!

    Dominium

  8. #7073
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    Hey everyone, I just uploaded a significantly updated/upgraded version of my pre-MoP retribution profile. If interested, please visit this thread.

    Please leave constructive feedback/suggestions since I don't play ret at the moment :P

    Cheers!

    Dominium
    Posted on your thread



    Mentally, can you paste the code you wrote here, or in my thread? Something is wrong with my private messages. No one can send me any for some reason.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  9. #7074
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Posted on your thread
    Saw that and responded, thanks

    As for 'going through' the profile - remember that there are quite a few abilities that I made while testing, so check the Rotation to make sure that if you wanna comment on something that you aren't commenting on some test or old ability :P

  10. #7075
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone have the updated code for amber shaper, the current code errors and I don't know why.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  11. #7076
    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 was working out why my code doesn't interrupt the huge red guy, but haven't been able to actually get reshaped to test it (and we 1 shot it on heroic this week... soooo... maybe next week unless someone else comes up with a solution.)

    Here is my current boss special ability, it at least interrupts the players own cast.
    http://pastebin.com/raw.php?i=WBvBsKYs

    Not sure if it will interrupt the boss or not. Didn't work for me last time I tried.

    EDIT: BTW just updated it slightly, MIGHT work now.
    Last edited by Xelper; 12-19-2012 at 09:51 PM.

  12. #7077
    Sivers's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    62
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    I am using Sheepmoons, its not been updated in awhile but works for running Heroics and LFR. Hoping someone comes out with a newer more updated version, or updates his.

    Link to Sheepmoon's thread - http://www.ownedcore.com/forums/worl...-profiles.html ([PQR] MOP profiles)
    thanks! it seems to be working fine for my purposes. hopefully someone will keep it updated for any future changes though!

  13. #7078
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    I was working out why my code doesn't interrupt the huge red guy, but haven't been able to actually get reshaped to test it (and we 1 shot it on heroic this week... soooo... maybe next week unless someone else comes up with a solution.)

    Here is my current boss special ability, it at least interrupts the players own cast.
    http://pastebin.com/raw.php?i=73U2UiPq

    Not sure if it will interrupt the boss or not. Didn't work for me last time I tried.

    EDIT: BTW just updated it slightly, MIGHT work now.
    I will give it a try, you updated the pastebin, right?
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  14. #7079
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any1 know why this is not working its just trying to cast it on ppl even if they dont have Pheromones.

    PHP Code:
    local Pheromones UnitAura("mouseover""Pheromones")
    if 
    UnitExists("mouseover"then
        
    if Pheromones == "Pheromones" then
            
    if PQR_SpellAvailable(6940then
                
    return true
            end    
        end
    end 

  15. #7080
    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 averykey View Post
    I will give it a try, you updated the pastebin, right?

    yeah I did

    EDIT: Okay I see why it doesn't work now. It returns true on boss1, so it never gets to boss2 because you have reshape life on you.
    Code:
    return true --prevent the rotation from executing while reshaped
    I'll post an updated PasteBin soon.

    EDIT: This one should work now: http://pastebin.com/raw.php?i=WBvBsKYs

    In my testing Amber Monstrosity is always boss2, so it won't be a problem how I am doing it.
    Last edited by Xelper; 12-19-2012 at 09:52 PM.

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