PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 32 of 779 FirstFirst ... 28293031323334353682132532 ... LastLast
Results 466 to 480 of 11681
  1. #466
    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)
    Would it be simple to create a profile for my resto shaman that just simply just dispels certain spells automatically? For example in rated battlegrounds when our disc priest dispels UA and gets silenced for 3 seconds. That's basically all I would need to be dispelled oh and maybe polymorph.

    If anyone at all could either guide me so I could create it on my own or if it's super simple for someone to create it any help would be appreciated, thanks in advance!

    PQR - Rotation Bot
  2. #467
    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 firepong View Post
    Sorry about that, I was using the wrong item use code. Try this one out:
    Code:
    if IsLeftControlKeyDown() then
        UseItemByName(41119)
        if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
        return true
    end
    I was using UseItemByID when it was suppose to be UseItemByName(itemID)
    This works perfect thank you very much!

  3. #468
    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 Lexi777 View Post
    Would it be simple to create a profile for my resto shaman that just simply just dispels certain spells automatically? For example in rated battlegrounds when our disc priest dispels UA and gets silenced for 3 seconds. That's basically all I would need to be dispelled oh and maybe polymorph.

    If anyone at all could either guide me so I could create it on my own or if it's super simple for someone to create it any help would be appreciated, thanks in advance!
    What I did for my Resto PvP dispel is followed the dispel code from a shadow priest pvp profile, I don't know whos profile it was so I can't give them credit but it does the job and is not my work.

    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
    The bold area is where you will add the specific debuffs you want to have dispelled.

  4. #469
    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)
    Thank you Js, I'll fix it up and give it a try.

  5. #470
    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)
    @ firepong

    Currently under the rotation I'm using I need the ability to judge a focus target if I have one and judge my target if I don't have one. Right now I have to have 2 different rotations and swap between them depending if there is going to be a focus target or not. If I forget to focus a target judgement just doesn't go off. Here is the code for both judgements under with and without Zealotry.

    Code:
    
    
    Code:
    local holyPower = UnitPower("player", 9)
    local zealotry = PQR_UnitBuffID("player", 85696)
    
    
    if holyPower <= 2 and zealotry == nil then
    	return true
    end
    Code:
    local holyPower = UnitPower("player", 9)
    local zealotry = PQR_UnitBuffID("player", 85696)
    
    
    if zealotry and holyPower < 3 then
    	return true
    end
    Is there anyway I can clean this code up so it's under one ability and on top of that making it default to my target if I don't have a focus? Right now I just have 2 versions 1 for focus and 1 for target.

  6. #471
    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)
    im so sorry, I must be really noobish at this. I'm trying to create the dispel profile, how do i make a new profile?

    I went to rotation editor and clicked new profile, gave it a name and thats all i could get.

  7. #472
    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 Lexi777 View Post
    im so sorry, I must be really noobish at this. I'm trying to create the dispel profile, how do i make a new profile?

    I went to rotation editor and clicked new profile, gave it a name and thats all i could get.
    Open the Ability Editor.

    Ability Name: Priority Cleanse
    Spell ID: 51886
    Target: Custom

    Then add the code I linked on the right side and save it. Then you can add te Priority cleanse into your rotation.

  8. #473
    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)
    Originally Posted by js1974 View Post
    Open the Ability Editor.

    Ability Name: Priority Cleanse
    Spell ID: 51886
    Target: Custom

    Then add the code I linked on the right side and save it. Then you can add te Priority cleanse into your rotation.

    + Rep

    Very much appreciate your help tonight, thank you.

  9. #474
    Devilsadvocate's Avatar Member
    Reputation
    70
    Join Date
    May 2008
    Posts
    254
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I seem to be having a small problem that I'm not sure if others have encountered seeing as I haven't seen any bug reports pertaining to it.

    I'm trying to use ElvUI for my interface but for whatever reason PQR shows me as not logged in when I do and nothing I try will get it to work.

    Anyone else run into this problem and know a solution? If not, might be something for the Devs to take a look at for future releases.
    I'm not going to be releasing anything for a while. I'm back on retail for new content.

  10. #475
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Devilsadvocate View Post
    I seem to be having a small problem that I'm not sure if others have encountered seeing as I haven't seen any bug reports pertaining to it.

    I'm trying to use ElvUI for my interface but for whatever reason PQR shows me as not logged in when I do and nothing I try will get it to work.

    Anyone else run into this problem and know a solution? If not, might be something for the Devs to take a look at for future releases.

    im using elvui and it's fine over here

  11. #476
    Devilsadvocate's Avatar Member
    Reputation
    70
    Join Date
    May 2008
    Posts
    254
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by momo1029 View Post
    im using elvui and it's fine over here
    Yea I tried completely removing ElvUI and its actually still not working for me so apparently It's another issue. Currently looking into it.
    I'm not going to be releasing anything for a while. I'm back on retail for new content.

  12. #477
    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)
    Anyone currently using a beast Sub Rogue PvP profile?

  13. #478
    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)
    Xelper, can you please provide new offsets for today's beta build?

  14. #479
    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 Lexi777 View Post
    Anyone currently using a beast Sub Rogue PvP profile?
    Nova-team has a sub pvp-profile in their latest pack, you should check out their thread and try it out.

  15. #480
    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)
    Originally Posted by Ninjaderp View Post
    Nova-team has a sub pvp-profile in their latest pack, you should check out their thread and try it out.

    Oooh right on! I'll try it out. Ty

    *Edit- I downloaded their package, it does have rogue profiles but only leveling/botting. Bummer, maybe they'll make a beast real pvp one
    Last edited by Lexi777; 05-19-2012 at 09:24 AM.

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 09:46 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