PQR - Rotation Bot menu

User Tag List

Page 477 of 779 FirstFirst ... 377427473474475476477478479480481527577 ... LastLast
Results 7,141 to 7,155 of 11681
  1. #7141
    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 js1974 View Post
    Can someone help me get this straightened out, I'm not 100% sure what I need to change to make this work properly but I want it to work anytime Raid, Instance, Solo as long as I'm in combat.

    PHP Code:
    if not IsInInstance() or IsInInstance() and select(2GetInstanceInfo()) ~= "party" and select(2GetInstanceInfo()) ~= "raid" then
       
    if IsLeftControlKeyDown() and not GetCurrentKeyBoardFocus() and not IsMounted() and UnitAffectingCombat("player"then
            CastSpellByName
    (GetSpellInfo(108271), "player")
        
    end
    end 
    Right now it seems to rarely work in or out of instances.
    if IsLeftControlKeyDown() and not GetCurrentKeyBoardFocus() and not IsMounted() and UnitAffectingCombat("player") then
    CastSpellByName(GetSpellInfo(108271), "player")
    end

    all you really need since your using a mod key

    Please if someone helped you donate rep to them.

    PQR - Rotation Bot
  2. #7142
    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 Soapbox View Post
    it does, for raid bosses only. However, this does not work for Heroic dungeon bosses.

    And Avery, im not really tracking how that works(heroic dungeons), will it work on dungeon heroic bosses?
    yes, my es code. Might give you an idea on how to use it.

    PHP Code:
    if not IsPlayerSpell(114157then return false end

    local goakSTART
    goakDURATION GetSpellCooldown(86698)
    local awSTARTawDURATION GetSpellCooldown(31884)
    local haSTARThaDURATION GetSpellCooldown(105809)
    local bossExists nil
    local bossTarget 
    nil
        
    for i=1,do
        
    local bossCheck "boss"..i
        
    if UnitExists(bossCheckthen
            bossExists 
    true
            
    if UnitIsUnit(bossCheck"target"then
                bossTarget 
    bossCheck
            end
        end
    end
        
    if (select(2GetSpecializationInfo(GetSpecialization()))) == "Retribution" then
        
    if UnitBuffID("player"84963then
            
    if bossExists == nil then
                
    return true
            
    else
                if (
    IsPlayerSpell(105809) and PQR_SpellAvailable(105809)) or PQR_SpellAvailable(31884) or (goakSTART GetTime() + goakDURATION <= 20 and goakSTART GetTime() + goakDURATION 0)
                or (
    awSTART GetTime() + awDURATION <= 10 and awSTART GetTime() + awDURATION 0) or (haSTART GetTime() + haDURATION <= 10 and haSTART GetTime() + haDURATION 0then return false end
                    
    if (not PQR_SpellAvailable(86698) and UnitBuffID("player"86698) == nil) or UnitBuffID("player"86698) and select(7UnitBuffID"player"86698)) - GetTime() <= 21 then
                        
    if bossTarget ~= nil then
                            
    return true
                        end
                    end
                end
            end
    elseif (select(2GetSpecializationInfo(GetSpecialization()))) == "Protection" then
        
    if PQR_SpellAvailable(35395
        or 
    PQR_SpellAvailable(20271
        or 
    PQR_SpellAvailable(31935)
        or (
    UnitBuffID("player"85416) and UnitPower("player"9) < 5)
        or (switch == 
    true and PQR_SpellAvailable(26573)) then return false end
        
        
    if switch == false then
            
    if bossExists == nil then
                
    return true
            
    elseif bossTarget ~= nil then
                
    return true
            end
        
    elseif switch == true then
            
    if PQR_SpellAvailable(26573then 
                
    return false
            
    elseif not PQR_SpellAvailable(26573then
                
    if bossExists == nil then
                    
    return true
                
    elseif bossTarget ~= nil then
                    
    return true
                end
            end
        end
    end 
    Originally Posted by Valma View Post
    Try to change COMBAT_LOG_EVENT to COMBAR_LOG_EVENT_UNFILTERED. Seems like you have some filters specified on combat log which doesnt allow you to parse damage done from you.
    will try, thanks for the reply.

    edit: Will it still work for people who might have it filtered? or do I need to check for both.
    Last edited by averykey; 12-22-2012 at 09:33 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  3. #7143
    icotulookin's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    82
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Am I completely retarded.... I just came back to WoW and i can't get PQR to work on my RET pally or my Feral Druid except for KittyAoE(Firekitte). Frist DK works, Warrior works, Ele Shammy works, Mage works, Rogue but not Feral or Ret Pally. Nothing works for ret and isn't the developer a ret pally? Please tell me I am just doing something really wrong. Help would be appreciated. Thanks

  4. #7144
    cukiemunster's Avatar Contributor
    Reputation
    130
    Join Date
    Dec 2009
    Posts
    1,128
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you update to the latest profiles for what ever class you are using? Depending on how long you were gone, the old profiles may not work anymore because of Spell IDs

  5. #7145
    icotulookin's Avatar Member
    Reputation
    4
    Join Date
    May 2008
    Posts
    82
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used the automatic updater when I came back. I downloaded the new one. Am I doing it wrong?

  6. #7146
    cukiemunster's Avatar Contributor
    Reputation
    130
    Join Date
    Dec 2009
    Posts
    1,128
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The newest profiles, not newest PQR. Check out http://www.ownedcore.com/forums/worl...questions.html for firepong's, and http://www.ownedcore.com/forums/worl...9012012-a.html for a list of most available profiles

  7. #7147
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    will try, thanks for the reply.

    edit: Will it still work for people who might have it filtered? or do I need to check for both.
    UNFILTERED grabs ALL combatlog events no matter what filters are set for your combatlog tab in chat.So it will work for anyone.
    MEDVED+VODKA+BALALAYKA

  8. #7148
    kayonekayone's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    UNFILTERED grabs ALL combatlog events no matter what filters are set for your combatlog tab in chat.So it will work for anyone.
    what does it means?

  9. #7149
    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 kayonekayone View Post
    what does it means?
    It means Valma is a wizard.

  10. #7150
    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)
    just a heads up i'm headed on a wonderful drive for 6 hours with 2 little kids for christmas, I'll be poping on and off if i get the time to do so but i won't be coding anything.

    Wishing you and yours the best holidays one can have!

    Please if someone helped you donate rep to them.

  11. #7151
    kayonekayone's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    It means Valma is a wizard.
    shut up if you only talk bullshit

  12. #7152
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kayonekayone View Post
    shut up if you only talk bullshit
    I think your talking bullshit. Valma is a damn good coder and besides Sheuron when he was still coding, valma did some mighty fine work. One of the best ever warlock profile dev in Cata.

    Sent from my SAMSUNG-SGH-I747 using Tapatalk 2

  13. #7153
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    I think your talking bullshit. Valma is a damn good coder and besides Sheuron when he was still coding, valma did some mighty fine work. One of the best ever warlock profile dev in Cata.

    Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
    Just ignore random troll.

  14. #7154
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kayonekayone View Post
    what does it means?
    API_COMBAT_LOG_EVENT

    Read the first 3 sentenses.
    MEDVED+VODKA+BALALAYKA

  15. #7155
    kayonekayone's Avatar Member
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    people hold on, i dont want to **** up valma!!! i mean the useless post from Ninjaderp

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:28 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