PQR - Rotation Bot menu

User Tag List

Page 343 of 779 FirstFirst ... 243293339340341342343344345346347393443 ... LastLast
Results 5,131 to 5,145 of 11681
  1. #5131
    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 Dimonoff View Post
    If anybody have code that stop autoattack and using ability when
    Impervious Shield (Impervious Shield - Spell - World of Warcraft) is active.
    If you are going for that you should probably add all 3 shields into 1 set of code. Since i'm not really sure how this is going to work but I'm familiar with the encounter each boss has a buff they gain that while it's active you don't want to keep attacking.

    1. Impervious Shield
    2. Shield of Darkness
    3. Sleight of Hand

    So what you would be looking for is the code that checks for all three of those buffs and if any are present it stops attacking.

    PQR - Rotation Bot
  2. #5132
    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 alucard1 View Post
    Does anyone have a list of keyboard keys for "Is"key"down()"

    if IsLeftControlKeyDown() then
    return true
    end

    works, but i can't seem to get "IsQkeydown" or "IsQdown" is it numerical based like a lot of things, ie Q = 43 and A = 1 or something.
    theres no api for keys other than alt shift ctrl atm

    Please if someone helped you donate rep to them.

  3. #5133
    alucard1's Avatar Active Member
    Reputation
    36
    Join Date
    Oct 2007
    Posts
    246
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty crystal

  4. #5134
    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 Xelper View Post
    Funny you mention this. I made code just for this yesterday.

    Ability: -Raid Special - Do Not Attack-
    Spell ID: 0
    Code:
    Code:
    for i=1,4 do
        local bossTest = "boss"..i
        --117697
        if UnitExists(bossTest) then
            local spellCheck = { 117961, 117697, 118162 }
            for _,v in ipairs(spellCheck) do
                local buffCheck = UnitBuffID(bossTest, v)
                if buffCheck then
                    RunMacroText("/stopattack")
                    return true
                end
                if PQRaid_IsCastingSpell and PQRaid_IsCastingSpell(bossTest, v) then
                    RunMacroText("/stopattack")
                    PQR_DelayRotation(0.5)
                    return true
                end
            end
            
    
    
        end
    end
    Much appreciated +Rep for you!

  5. #5135
    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 js1974 View Post
    If you are going for that you should probably add all 3 shields into 1 set of code. Since i'm not really sure how this is going to work but I'm familiar with the encounter each boss has a buff they gain that while it's active you don't want to keep attacking.

    1. Impervious Shield
    2. Shield of Darkness
    3. Sleight of Hand

    So what you would be looking for is the code that checks for all three of those buffs and if any are present it stops attacking.
    Funny you mention this... I made code to handle these 3 abilities last night.
    Ability: -Special: Do Not Attack-
    NOTE: Place above all attacks in your rotation.
    Spell ID: 0
    Lua:
    Code:
    for i=1,4 do
        local bossTest = "boss"..i
        if UnitExists(bossTest) then
            local spellCheck = { 117961, 117697, 118162 }
            for _,v in ipairs(spellCheck) do
                local spellName = GetSpellInfo(v)
                local bossCasting = UnitCastingInfo(bossTest)
                local buffCheck = UnitBuffID(bossTest, v)
                
                if buffCheck then
                    RunMacroText("/stopattack")
                    RunMacroText("/stopcasting")
                    return true
                end
    
    
                if spellName == bossCasting then
                    RunMacroText("/stopattack")
                    RunMacroText("/stopcasting")
                    PQR_DelayRotation(0.5)
                    return true
                end
                
            end
        end
    end
    The PQR_DelayRotation is to ensure PQR doesn't start attacking in the VERY brief moment between when the spell goes up and when he finishes casting.
    Last edited by Xelper; 10-18-2012 at 03:41 PM.

  6. #5136
    jojozilla69's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tried searching for this but could not find out the procedure for getting the herb interrupt profile for collecting herbs to work. Please advise, thank you.
    Last edited by jojozilla69; 10-18-2012 at 04:51 PM.

  7. #5137
    SeveredShadow's Avatar Member
    Reputation
    3
    Join Date
    Aug 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I'm trying to make code for use with Grounding Totem and I only want it to use the totem if my target is casting a specific spell. Is there a function I could be using that will tell me which spell my target is currently casting?

    I want something like:
    if TargetIsCasting(#####) then
    return true
    end

  8. #5138
    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)
    Anyone using my SV profile atm should change the recast delay on LNL from 1500 to 0, the same thing needs to happen to Explosive Shot. Some old legacy code for that delay and I completely skipped over it. Copy+Paste 4tw.

    This should increase your dps by a small amount. I'll include it in the next update to my profile, I am just too lazy to upload and all that for one tiny fix.

    Thanks to member Xvvt for the spot.
    Last edited by kickmydog; 10-18-2012 at 05:55 PM.
    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

  9. #5139
    Deathsmind's Avatar Member
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    100
    Thanks G/R
    0/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone help with this problem? havent heard from avery for a fix on this. Heres the message. Im really stupid with coding and not even sure where to start to change any of this. Maybe someone can point out some stuff for me to help me out. Here was the message i posted on here earlier for him.

    Hey Avery, im using your coding for the prot pally PQR, i have a couple questions with your coding that i need changed. Im not the greatest with coding but i know a couple things need to be changed. This is my first time using this program so im sorry for all the questions. Im a pretty fast learner and once i get some help here i will understand more and will be able to do it myself later. Thank you for your time as well.

    1. For prot, Seal of Truth is no longer Viable it received a 80% nerf, i need to change this to Seal of Insight.
    2. Im using Divine Purpose, is there anyway of making it where i have the buff that it casts Shield of the Righteous again?
    3. How do i add divine protection and my trinket into the mix of this?
    4. Its not casting Holy Prism it seems to me, Very nice aoe heal for boss fights how do i get this working.
    5.When im running it with my addons on it continues to ask me to turn them off because there is a problem and its slowing wow down. It closed, bartender, recount, a scrolling meter addon, and still asking to close more. Anyway around this? any way of changing something so it doesnt bog down wow? I have a top of the line computer i built, 24gb ram i7 3.2ghz computer. It can usually handle anything i give it but if it because apparent to wow that im using this than i would rather make it work better if possible. Again thank you for any of your help.

    edit: forgot one thing, anyway of ensuring that Weakening Blows is always up?

  10. #5140
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any profile for Warrior Fury (SMF) for pvp? I can only find pve ones or arm pvp

    /edit: nvm, just found the one by failroad.. awesome so far in arena !
    Last edited by chumii; 10-18-2012 at 07:04 PM.

  11. #5141
    Waffle's Avatar Contributor CoreCoins Purchaser
    Reputation
    115
    Join Date
    Sep 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey there, hoping someone can help me out, is there a way to make Combustion go off at only when Ignite reaches a certain point? Using Boss' profile it has been popping it very early so would like to set my own threshold for it.

  12. #5142
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Anyone using my SV profile atm should change the recast delay on LNL from 1500 to 0, the same thing needs to happen to Explosive Shot. Some old legacy code for that delay and I completely skipped over it. Copy+Paste 4tw.

    This should increase your dps by a small amount. I'll include it in the next update to my profile, I am just too lazy to upload and all that for one tiny fix.

    Thanks to member Xvvt for the spot.
    It's also named "load and load".

    Thanks for the profile kick, always liked yours. What's your plan when they remove fox from the game?

  13. #5143
    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 Xelper View Post
    Funny you mention this... I made code to handle these 3 abilities last night.
    Ability: -Special: Do Not Attack-
    NOTE: Place above all attacks in your rotation.
    Spell ID: 0
    Lua:
    Code:
    for i=1,4 do
        local bossTest = "boss"..i
        if UnitExists(bossTest) then
            local spellCheck = { 117961, 117697, 118162 }
            for _,v in ipairs(spellCheck) do
                local spellName = GetSpellInfo(v)
                local bossCasting = UnitCastingInfo(bossTest)
                local buffCheck = UnitBuffID(bossTest, v)
                
                if buffCheck then
                    RunMacroText("/stopattack")
                    RunMacroText("/stopcasting")
                    return true
                end
    
    
                if spellName == bossCasting then
                    RunMacroText("/stopattack")
                    RunMacroText("/stopcasting")
                    PQR_DelayRotation(0.5)
                    return true
                end
                
            end
        end
    end
    The PQR_DelayRotation is to ensure PQR doesn't start attacking in the VERY brief moment between when the spell goes up and when he finishes casting.
    Just tried this in raid it the rotation fails with it in rotation.

  14. #5144
    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 js1974 View Post
    Just tried this in raid it the rotation fails with it in rotation.
    You likely did something wrong. I just created the ability from my post and it worked.

  15. #5145
    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 Xelper View Post
    You likely did something wrong. I just created the ability from my post and it worked.
    You are correct my mistake I misread what you said.

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 05:00 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