PQR - Rotation Bot menu

User Tag List

Page 15 of 116 FirstFirst ... 11121314151617181965115 ... LastLast
Results 211 to 225 of 1739
  1. #211
    Maxitor's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Apr 2013
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would like to get help with some problems.

    First one seems to be easy but i am unable to fix the ability

    Basicly i can not get the proper range of the morphed spell Fist of Justice because IsSpellInRange(GetSpellInfo(hojid), "target") == 1 does not work properly.


    Code:
    local _, talent = GetTalentRowSelectionInfo(2)
    local hojid = 853 
    	
    		
    if talent == 4 then 
    	hojid = 105593	
    end
    
    if PQR_SpellAvailable(hojid)
     and UnitExists("target")
     and not UnitDebuffID("target", 20066)
     and ...
     and PQR_IsOutOfSight("target", 0.1) == false
      --and IsSpellInRange(GetSpellInfo(hojid), "target") == 1
      and IsSpellInRange("Hammer of Justice", "target") == 1 
      --and IsSpellInRange("Scatter Shot", "target") == 1 
    then
        CastSpellByName(GetSpellInfo(hojid), "target")
      Notify_Short( "HoJ"..UnitName("target") )
    end
    I even tried to use "and IsSpellInRange("Scatter Shot", "target") == 1" but i had to find out that i can not use spells what are not in the spellbook. (Paladin vs. Hunter)

    Second one:
    In my DK profile i would like to check the spell what i DarkSimmed but i do not have any idea how to get the stolen spell's ID. I need to know this to check for target DRs / immunities before i let the DarkSimmed spell cast on the target.

    Third one:
    How can i check the amount of Necrotic Strike healing absorb on the target?

    PQR - Rotation Bot
  2. #212
    leinadz's Avatar Active Member
    Reputation
    23
    Join Date
    May 2008
    Posts
    134
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are there any good unholy dk pvp profiles for pqr?

  3. #213
    qzt's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi need some help with a interrupt Profile. what i want is to add another interrupt spell (47481)......Gnaw - Spell - World of Warcraft
    my profile looks like this atm
    if playerClass == "DEATHKNIGHT" then
    local mfStart, mfDuration = GetSpellCooldown(4752
    local sStart, sDuration = GetSpellCooldown(47476)

    if ( GetSpellCooldown(4752 == 0 and GetSpellCooldown(47476) == 0 ) then --If both arent on CD then choose mind freeze
    return 47528
    elseif ( sStart > 0 and sDuration > 1.5 ) then --if Strangulate is on CD then choose mind freeze
    return 47528
    elseif ( mfStart > 0 and mfDuration > 1.5 ) then -- if mindfreeze is on cd then choose strangulate
    return 47476
    end

  4. #214
    moor2's Avatar Active Member
    Reputation
    65
    Join Date
    Aug 2008
    Posts
    335
    Thanks G/R
    2/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hm, is there anyone who can explain me very huge FPS drops while using PQR and PQI? in LFR without it im running smotth 27+ fps but with it drops under 5.

  5. #215
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by moor2 View Post
    hm, is there anyone who can explain me very huge FPS drops while using PQR and PQI? in LFR without it im running smotth 27+ fps but with it drops under 5.
    It's probly tied to the profile you use. Not all profiles take the same ressources..

    Something I noticed is using PQR_UnitFacing in a profile will lead to frames lags but the profile itself still kicks and everything goes fine but visual experience is somewhat less enjoyable. I' revamping my profile and I finally decided to let the user choose if he want to use UnitFacing or not. Did a function with a PQI check that if checked disable PQR_UnitFacing and just goes blindly and... Blindly is not interfering my framerate... With Facing Check it drops by 15-20 fps from 120 to 105... No that bad but we can clearly see it lag.
    Soapbox Rotations Developer

  6. #216
    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)
    I've been trying to get Xelper's interrupt to work with the new changes to hunter's interrupts but the changes I've made only seem to work for counter shot (147362) and not for silencing shot (34490). Any suggestions on what to change.

    PHP Code:
    if xelperInterruptInit == nil then
        
    --TestComment
        xelperInterruptInit 
    true
        
    function PQR_InterruptSpell()
            
    local _playerClass UnitClass("player")
            
            if 
    playerClass == "DEATHKNIGHT" then
                
    return 47528
            
    elseif playerClass == "DRUID" then
                local catForm 
    UnitBuffID("player"768)
                if 
    catForm ~= nil then
                    
    return 80965
                
    else
                    return 
    80964
                end
            
    elseif playerClass == "HUNTER" then
                
    if IsPlayerSpell(34490then
                
    return 34490
                
    else 
                return 
    147362
                end
            
    elseif playerClass == "MAGE" then
                
    return 2139
            
    elseif playerClass == "PALADIN" then
                
    return 96231
            
    elseif playerClass == "PRIEST" then
                
    return 15487
            
    elseif playerClass == "ROGUE" then
                
    return 1766
            
    elseif playerClass == "SHAMAN" then
                
    return 57994
            
    elseif playerClass == "WARLOCK" then
                
    return 19647
            
    elseif playerClass == "WARRIOR" then
                
    return 6552
            
    else
                return 
    0
            end
        end
    end 
    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

  7. #217
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I've been trying to get Xelper's interrupt to work with the new changes to hunter's interrupts but the changes I've made only seem to work for counter shot (147362) and not for silencing shot (34490). Any suggestions on what to change.

    PHP Code:
    if xelperInterruptInit == nil then
        
    --TestComment
        xelperInterruptInit 
    true
        
    function PQR_InterruptSpell()
            
    local _playerClass UnitClass("player")
            
            if 
    playerClass == "DEATHKNIGHT" then
                
    return 47528
            
    elseif playerClass == "DRUID" then
                local catForm 
    UnitBuffID("player"768)
                if 
    catForm ~= nil then
                    
    return 80965
                
    else
                    return 
    80964
                end
            
    elseif playerClass == "HUNTER" then
                
    if IsPlayerSpell(34490then
                
    return 34490
                
    else 
                return 
    147362
                end
            
    elseif playerClass == "MAGE" then
                
    return 2139
            
    elseif playerClass == "PALADIN" then
                
    return 96231
            
    elseif playerClass == "PRIEST" then
                
    return 15487
            
    elseif playerClass == "ROGUE" then
                
    return 1766
            
    elseif playerClass == "SHAMAN" then
                
    return 57994
            
    elseif playerClass == "WARLOCK" then
                
    return 19647
            
    elseif playerClass == "WARRIOR" then
                
    return 6552
            
    else
                return 
    0
            end
        end
    end 
    try breaking it up

    if isplayerspell() then
    return id
    end
    if not is playerspell() then
    return other id
    end

    Please if someone helped you donate rep to them.

  8. #218
    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)
    Thought of a new feature, show the rotation we are working on next to the ability editor or even better, have it where we can have two ability editors open, using tabs to switch through.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  9. #219
    qzt's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi need some help with a interrupt Profile. what i want is to add another interrupt spell (47481)......Gnaw - Spell - World of Warcraft
    my profile looks like this atm
    if playerClass == "DEATHKNIGHT" then
    local mfStart, mfDuration = GetSpellCooldown(4752
    local sStart, sDuration = GetSpellCooldown(47476)

    if ( GetSpellCooldown(4752 == 0 and GetSpellCooldown(47476) == 0 ) then --If both arent on CD then choose mind freeze
    return 47528
    elseif ( sStart > 0 and sDuration > 1.5 ) then --if Strangulate is on CD then choose mind freeze
    return 47528
    elseif ( mfStart > 0 and mfDuration > 1.5 ) then -- if mindfreeze is on cd then choose strangulate
    return 47476
    end

  10. #220
    sbforumuser's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone else occasionally have PQR not unprotect lua for them?

    Everything else seems to work correctly, offsets are updated, and when this happens I can use something like lua unlocker to have the rotations work again.

  11. #221
    donnicky's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    INTERRUPT (Xelper) profile seems not to work for monk interrupt. I have changed the initializing script:
    if xelperInterruptInit == nil then
    --TestComment
    xelperInterruptInit = true
    function PQR_InterruptSpell()
    local _, playerClass, playerClassIndex = UnitClass("player")

    if playerClass == "DEATHKNIGHT" then
    return 47528
    elseif playerClass == "DRUID" then
    local catForm = UnitBuffID("player", 76
    if catForm ~= nil then
    return 80965
    else
    return 80964
    end
    elseif playerClass == "HUNTER" then
    return 34490
    elseif playerClass == "MAGE" then
    return 2139
    elseif playerClass == "PALADIN" then
    return 96231
    elseif playerClass == "PRIEST" then
    return 15487
    elseif playerClass == "ROGUE" then
    return 1766
    elseif playerClass == "SHAMAN" then
    return 57994
    elseif playerClass == "WARLOCK" then
    return 19647
    elseif playerClass == "WARRIOR" then
    return 6552
    elseif playerClass == "MONK" then
    return 116705
    else
    return 0
    end
    end
    end


    It works perfectly for DK, but not for monk. I only get debug message "Casting interrupt on target" and nothing happens.

    Could you say where the problem can be?
    Last edited by donnicky; 09-27-2013 at 05:13 PM.

  12. #222
    damadorpl's Avatar Member
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its not updated for monk hunter and others - i ise Cuteone monk - it have interrupts inside

  13. #223
    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)
    If anyone has an update for the interrupt profile feel free to post it and I will replace the existing one with it and give you credit... Try to keep it simple (like the one I have already in place.) I know there are a couple bugs in the current one, so if they are fixed even better!

  14. #224
    damadorpl's Avatar Member
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    elseif playerClass == "HUNTER" then
    			return 147362
    		elseif playerClass == "MAGE" then
    			return 2139
    		elseif playerClass == "PALADIN" then
    			return 96231
    		elseif playerClass == "PRIEST" then
    			return 15487
    		elseif playerClass == "ROGUE" then
    			return 1766
    		elseif playerClass == "SHAMAN" then
    			return 57994
    		elseif playerClass == "WARLOCK" then
    			return 19647
    		elseif playerClass == "WARRIOR" then
    change to hunter spell

  15. #225
    donnicky's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want to say that monk's interrupt problem is not in the profile. Simply CastSpellById(116705,"target") does not work for this spell by some reason. Also tried CastSpellByName and the result was the same.

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. [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
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 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 10:41 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