PQR - Rotation Bot menu

User Tag List

Page 64 of 116 FirstFirst ... 14606162636465666768114 ... LastLast
Results 946 to 960 of 1739
  1. #946
    sephiroth07's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where can i get a resto chaman rotation for arena please ?

    PQR - Rotation Bot
  2. #947
    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 Corncob View Post
    Maybe it's Blizz's way of kicking you out of battlegrounds and what not. I don't know. But it is annoying.
    Just uncheck "Anti-AFK" in settings.

    Originally Posted by sephiroth07 View Post
    where can i get a resto chaman rotation for arena please ?
    You may or may not find one in this thread:

    http://www.ownedcore.com/forums/worl...1252013-a.html ([PQR] List of Community Rotations - Updated 01252013)

  3. #948
    shnee's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Error Creating a Click Button Ability

    I've just started to create my own PQR profiles and I'm running into a problem. Here's my code for an ability to click a button whenever it is enabled:
    Code:
    if TSMCraftNextButton:IsEnabled() then
      RunMacroText("/click TSMCraftNextButton")
      return true
    end
    I get the following error:
    TradeSkillMaster_Crafting has been blocked from an action only available to the Blizzard UI. You can disable this addon and reload the UI.
    I assumed that because I can call button:IsEnabled() from within the game I can use it in PQR. Am I wrong? Is there something I'm missing?

  4. #949
    kgntarver's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    has anyone ever been banned for using PQR

  5. #950
    Corncob's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am such a noob sometime. Thank you Nijaderp for pointing out the not so obvious.

  6. #951
    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 shnee View Post
    I've just started to create my own PQR profiles and I'm running into a problem. Here's my code for an ability to click a button whenever it is enabled:
    Code:
    if TSMCraftNextButton:IsEnabled() then
      RunMacroText("/click TSMCraftNextButton")
      return true
    end
    I get the following error:


    I assumed that because I can call button:IsEnabled() from within the game I can use it in PQR. Am I wrong? Is there something I'm missing?
    TSMCraftNextButton:IsEnabled()
    is empty when i /dump it
    so that may be the problem

    this is the code for the button itself

    Code:
    	local btn = TSMAPI.GUI:CreateButton(frame, 14)
    	btn:SetPoint("BOTTOMLEFT", 5, 5)
    	btn:SetWidth(120)
    	btn:SetHeight(20)
    	btn:SetText(L["Clear Queue"])
    	btn:SetScript("OnClick", function()
    		TSM.Queue:ClearQueue()
    		GUI:UpdateQueue()
    		if GUI.frame.gather:IsVisible() then
    			GUI.frame.gather:Hide()
    		end
    		private.gather = {}
    		GUI:UpdateGatherSelectionWindow()
    		if GUI.gatheringFrame:IsShown() then
    			GUI.gatheringFrame:Hide()
    			TSM.db.factionrealm.gathering.crafter = nil
    			TSM.db.factionrealm.gathering.neededMats = {}
    			TSM.db.factionrealm.gathering.gatheredMats = false
    			TSM.db.factionrealm.sourceStatus.collapsed = {}
    		end
    	end)
    	frame.clearBtn = btn
    
    	local btn = TSMAPI.GUI:CreateButton(frame, 18, "TSMCraftNextButton")
    	btn:SetPoint("BOTTOMLEFT", frame.clearBtn, "BOTTOMRIGHT", 5, 0)
    	btn:SetPoint("BOTTOMRIGHT", -5, 5)
    	btn:SetHeight(20)
    	btn:SetText(L["Craft Next"])
    	btn:SetScript("OnUpdate", function(self)
    		if UnitCastingInfo("player") or not GUI.craftNextInfo then
    			self:Disable()
    		elseif GUI.isCrafting and GUI.isCrafting.quantity > 0 then
    			self:Disable()
    		else
    			self:Enable()
    		end
    	end)
    	btn:SetScript("OnClick", function(self)
    		if not GUI.craftNextInfo or not self:IsVisible() then return end
    		GUI:CastTradeSkill(GUI.craftNextInfo.index, GUI.craftNextInfo.quantity, GUI.craftNextInfo.velName)
    	end)
    	frame.craftNextbtn = btn
    
    	return frame
    end
    Last edited by crystal_tech; 01-13-2014 at 08:18 AM.

    Please if someone helped you donate rep to them.

  7. #952
    powerflex's Avatar Active Member
    Reputation
    23
    Join Date
    Feb 2010
    Posts
    59
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it me, or did PQR recently stop working? Was using it last night just fine, go to log in today nothing happens. Any profile I choose it just sits there and does nothing. Tried restarting PC, same result - anyone having this same issue?

    Edit: NM - Got it figured out - Don't use the addon AskmrRobot, for some reason it messes up PQR...
    Last edited by powerflex; 01-13-2014 at 09:36 PM.

  8. #953
    LifeIsOP's Avatar Sergeant
    Reputation
    10
    Join Date
    Jul 2012
    Posts
    41
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by powerflex View Post
    Is it me, or did PQR recently stop working? Was using it last night just fine, go to log in today nothing happens. Any profile I choose it just sits there and does nothing. Tried restarting PC, same result - anyone having this same issue?
    Not entirely the same but now when I open my PQR I get this error: "Unable to load rotation / ability list. The XML is not we-formed. C:\Users\Name\Desktop\PQR\Profiles\INTERRUPT\Alpha Interrupt_INTERRUPT_Rotations.xml". Then like 1 out of 10+ Profiles I have will work and when I change zones my PQR gets the error again and again.

    All this was basically overnight. I Didn't play WoW since Christmas and I was fully updated then. I come back and update my PQR and this starts happening to me. No idea why, my girlfriend plays on a different comp but her's works fine. I don't think she updated though before she played with it again.

  9. #954
    teariki's Avatar Private
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hola, hey is there a current working Disc/Holy PVP rotation floating around? Cheeeers! and happy NY!~

  10. #955
    godlike86's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi there guys i was wondering if anyone would happen to know how i could make it to where if my mindfreeze is down that i would cast strangulate/asphyxiate instead and vice versa on my dk ive tried implementing code from paintpaullers interrupt profiles but alas its working any help would be appreciated

  11. #956
    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)
    people with problems that run askmrrobot addon its prob due the the addon prepping for there combat log parser, most/some pqr profiles use a combat log unfiltered frame and askmrrobot is prob doing the same, profile makers might need to change some frame names to prevent this. just my 2 cents

    sidenote 1.2.5.0 hasn't caused me any issues.

    Please if someone helped you donate rep to them.

  12. #957
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i've been searching a solution to check if target is behind or in front of you through past posts. I remember seeing it a while back. Could someone please post the script again.
    thanks.

  13. #958
    Soapbox's Avatar Legendary Founder of Soapbox Rotations

    CoreCoins Purchaser Authenticator enabled
    Reputation
    743
    Join Date
    Nov 2012
    Posts
    986
    Thanks G/R
    1118/364
    Trade Feedback
    61 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone knows how to set up PQR on a Mac could you please contact me on skype? KBRebel04_Skype. I would like to make a guide as I have had quite a few people come to me and ask how to set it up. I know it is possible and requires some external software but I do not own a Mac. Thanks!

  14. #959
    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)
    As of today I have ran into a problem with PQR and no I am not using the Ask Mr. Robot addon.

    Every once in a while when I am switching between rotations or toggling the interrupt profile on/off PQR will constantly keep switching the profile between an enabled/disabled state. It spams my chat box with "<profile> Enabled." and "<profile> Disabled." over and over again until eventually WoW gets a critical error. It acts like I am holding the button for my rotation keybind down instead of just pressing it.
    Once it starts doing this the PQR UI doesn't respond to anything I do and the only way I can get it to stop is to close PQR through task manager and then I basically have to reopen a fresh copy of WoW to start using PQR again.

    I ran the updater thinking maybe my copy was outdated with the recent mini WoW patch but that didn't solve my problem
    It was working fine any other day prior to today when I updated WoW.

  15. #960
    troxxer's Avatar Member
    Reputation
    3
    Join Date
    May 2008
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iceymot View Post
    i've been searching a solution to check if target is behind or in front of you through past posts. I remember seeing it a while back. Could someone please post the script again.
    thanks.
    Code:
    PQR_UnitFacing(unit, otherUnit)
    returns true if unit is facing otherUnit, false otherwise

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