PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 53 of 116 FirstFirst ... 3495051525354555657103 ... LastLast
Results 781 to 795 of 1739
  1. #781
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    New offsets are on the updater, click Download Offsets. If you installed the released offsets manually, do it anyway as a few of them are off. Blizzard made some minor changes to the object manager, which only happens in major patches usually.
    thanks Xelper your new offset made my character movement logic working again-i supposed that the new offsets corrected PQR_unitinfo checks

    PQR - Rotation Bot
  2. #782
    prettycooldude's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, if warriors are spec'd for Disrupting Shout they have two interrupts. Is there any chance you can program your kick bot to utilize both pummel and disrupting shout for warriors?

    Thanks a lot

  3. #783
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prettycooldude View Post
    Xelper, if warriors are spec'd for Disrupting Shout they have two interrupts. Is there any chance you can program your kick bot to utilize both pummel and disrupting shout for warriors?

    Thanks a lot
    im not so sure that he still updates his interrupt profile

  4. #784
    Shudder's Avatar Member
    Reputation
    2
    Join Date
    Sep 2013
    Posts
    23
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.

    In the case of Vachiusa's code, you would change:

    Code:
    --Begin PQI
    if (IsAddOnLoaded("PQInterface")) == 1 then
    To:

    Code:
    --Begin PQI
    if IsAddOnLoaded("PQInterface") then
    I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.
    It stopped it saying pqi is out of date but the profile doesn't work for some reason. Also downloaded xelper's new offset still nothing.

    EDIT: Never mind there is a fix in her thread, working now.
    Last edited by Shudder; 12-10-2013 at 06:48 PM.

  5. #785
    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)
    Where exactly do I go to edit the code of PQI to make it work? I was going to figure it out myself but I am afraid to mess things up. Which file do I open to make the fix?

    Or do I just wait for someone to upload a fix? I usually just get w/e PQI update through the SVN update from Codemylife's stuff (I mainly Pokebattle with PQI).

  6. #786
    vaarsuvius's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First I want to thank for the fixes in this post.

    And its very easy to change code in the PQI File

    1- Start up PQR
    2- Select what every you want. You can do it blank but loading in on a player is fine
    3- Click "Ability Editor" in the bottom right corner.
    4- Click on the drop down menu near "Class"
    5- Pick "Interupt"
    6- Pick your Profile that you use, I use " VachiusaPQI" so that is what I chose.
    7- In the abilites tab click "--Init--"
    8- Follow the steps in the pst above yours. Its like the 9th line down.

    Just take the == 1 our and leave 1 space between the ) and then

    And click save

  7. #787
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Trying to use Alpha Utilities to DE and Mill stuff and it's giving me the same PQI Errors. I'm not doing all this manually. Hope someone can come up with a fix. None of the steps outlined above have worked.

  8. #788
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    Trying to use Alpha Utilities to DE and Mill stuff and it's giving me the same PQI Errors. I'm not doing all this manually. Hope someone can come up with a fix. None of the steps outlined above have worked.
    Go into ability editor and click on --[PQI Global Variables]--.

    Edit this part:

    Code:
    	--  --  PQI is Required  --  --
    	if (IsAddOnLoaded("PQInterface")) == 1 then
    to

    Code:
     	--  --  PQI is Required  --  --
    	if (IsAddOnLoaded("PQInterface"))  then
    and it should stop the PQI check from failing.
    Former PQR Developer

  9. #789
    joenvidio's Avatar Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im using CodeMyLife's profile for BM hunter and its working fine. no PQI errors.

  10. #790
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    Go into ability editor and click on --[PQI Global Variables]--.

    Edit this part:

    Code:
    	--  --  PQI is Required  --  --
    	if (IsAddOnLoaded("PQInterface")) == 1 then
    to

    Code:
     	--  --  PQI is Required  --  --
    	if (IsAddOnLoaded("PQInterface"))  then
    and it should stop the PQI check from failing.
    That worked. Thank you!

  11. #791
    Vogel81's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Feb 2012
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I keep getting PMs about this so reposting.

    FIX FOR VACHIUSA'S HEALER PROFILES

    Ok I fixed it... well.. rigged it guys. Here's what happens. Under each of Vachiusa's Profiles.

    Go to Ability Editor > -- Init --

    In that ability there is a Section labeled "--Begin PQI"

    Comment out (add "--" to the start of each line) everything BUT

    PQInterfaceLoaded = true
    and
    PQInterfaceUpdated = true


    In the end it should look like this.


    Code:
    	--Begin PQI
    --	if (IsAddOnLoaded("PQInterface")) == 1 then
    		PQInterfaceLoaded = true
    --		PQInterfaceVersion = (2.22)
    --		if PQInterfaceVersion >= 2.22 then
    			PQInterfaceUpdated = true
    --		else 
    --			PQInterfaceUpdated = nil 
    --			PQR_WriteToChat("Your PQI is not up to date. Rotation has been stopped.", "Error")
    --			PQR_StopRotation()
    --			return true					
    --		end
    --	else 
    --		PQInterfaceLoaded = nil 
    --		PQR_WriteToChat("Please download the latest version of PQI. Rotation has been stopped.", "Error")
    --		PQR_StopRotation()
    --		return true				
    --	end
    		-- Load Data File

  12. #792
    retalin's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can i ask how to make fresh new routine for PQR..
    is there any guide?

  13. #793
    lewshea's Avatar Private
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah thankyou so much, never edited the coding before so it was really nice simple explanation too!
    Mucho lovo <3

  14. #794
    haisenberg's Avatar Member
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    56
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vogel81 View Post
    I keep getting PMs about this so reposting.

    FIX FOR VACHIUSA'S HEALER PROFILES

    Ok I fixed it... well.. rigged it guys. Here's what happens. Under each of Vachiusa's Profiles.

    Go to Ability Editor > -- Init --

    In that ability there is a Section labeled "--Begin PQI"

    Comment out (add "--" to the start of each line) everything BUT

    PQInterfaceLoaded = true
    and
    PQInterfaceUpdated = true


    In the end it should look like this.


    Code:
    	--Begin PQI
    --	if (IsAddOnLoaded("PQInterface")) == 1 then
    		PQInterfaceLoaded = true
    --		PQInterfaceVersion = (2.22)
    --		if PQInterfaceVersion >= 2.22 then
    			PQInterfaceUpdated = true
    --		else 
    --			PQInterfaceUpdated = nil 
    --			PQR_WriteToChat("Your PQI is not up to date. Rotation has been stopped.", "Error")
    --			PQR_StopRotation()
    --			return true					
    --		end
    --	else 
    --		PQInterfaceLoaded = nil 
    --		PQR_WriteToChat("Please download the latest version of PQI. Rotation has been stopped.", "Error")
    --		PQR_StopRotation()
    --		return true				
    --	end
    		-- Load Data File
    thanks buddy!

  15. #795
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vogel81 View Post
    I keep getting PMs about this so reposting.

    FIX FOR VACHIUSA'S HEALER PROFILES

    Ok I fixed it... well.. rigged it guys. Here's what happens. Under each of Vachiusa's Profiles.

    Go to Ability Editor > -- Init --

    In that ability there is a Section labeled "--Begin PQI"

    Comment out (add "--" to the start of each line) everything BUT

    PQInterfaceLoaded = true
    and
    PQInterfaceUpdated = true


    In the end it should look like this.


    Code:
    	--Begin PQI
    --	if (IsAddOnLoaded("PQInterface")) == 1 then
    		PQInterfaceLoaded = true
    --		PQInterfaceVersion = (2.22)
    --		if PQInterfaceVersion >= 2.22 then
    			PQInterfaceUpdated = true
    --		else 
    --			PQInterfaceUpdated = nil 
    --			PQR_WriteToChat("Your PQI is not up to date. Rotation has been stopped.", "Error")
    --			PQR_StopRotation()
    --			return true					
    --		end
    --	else 
    --		PQInterfaceLoaded = nil 
    --		PQR_WriteToChat("Please download the latest version of PQI. Rotation has been stopped.", "Error")
    --		PQR_StopRotation()
    --		return true				
    --	end
    		-- Load Data File
    Or simply edit out the ==1 on the first line and it'll work.
    Former PQR Developer

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