PQR - Rotation Bot menu

User Tag List

Page 179 of 779 FirstFirst ... 79129175176177178179180181182183229279679 ... LastLast
Results 2,671 to 2,685 of 11681
  1. #2671
    mrsalvas's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am currently testing the bu_ba destro profile and it kick ass in LFR, iam only 396ilvl and i do over 40K on every fight. thx man, continue your good work !!!

    PQR - Rotation Bot
  2. #2672
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vorn10 View Post
    As far as i see i think it is "PQR_UnitDistance()". Typed to Xelper what to do with it.
    I've noticed A LOT of FPS problems with this latest patch... I may be wrong but, I don't think PQR is the problem.
    Unless, you only experience this in combat with PQR than I have no idea what is causing it.
    Last edited by xLegendx; 08-29-2012 at 01:23 PM.

  3. #2673
    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 vorn10 View Post
    As far as i see i think it is "PQR_UnitDistance()". Typed to Xelper what to do with it.

    @Firepong
    I tried to implement ur code:
    Code:
    --Var1 = Target
    --Var2 = Player
    function PQR_UnitDistance(var1, var2)
    	if UnitExists(var1) and not UnitIsDead(var1) then
    		local x1 , y1 = select(1,PQR_UnitInfo(var1)), select(2,PQR_UnitInfo(var1))
    		local x2 , y2 = select(1,PQR_UnitInfo(var2)), select(2,PQR_UnitInfo(var2))
    		local w = 100000
    		local h = 100000
    		local distance = sqrt(min(x1 - x2, w - (x1 - x2))^2 + min(y1 - y2, h - (y1-y2))^2)
    		
    		return distance
    	end
    end
    
    
    if PQR_UnitDistance("target","player") < 20 then
    return true
    end
    Is it ok from programming side? No errors etc. /dump not returning empty value but not working.
    That should work. But again, it's basically the same principle as the original PQR_UnitDistance(). It still run's off of the object manager, so if you do not have a functional Object Manager, it will not work.

    For the people that are getting empty from PQR_UnitDistance() or do not have a working Object Manager, what locale, as in language, are your Clients running at? This might be able to explain why it doesn't work for certain people.

  4. #2674
    Omaha303's Avatar Member
    Reputation
    11
    Join Date
    Jun 2009
    Posts
    49
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For those losing FPS, this is a 5.0.4 issue and a lot of threads about it on forums. PQR may be affected by this, not the source of it.

  5. #2675
    freaki's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    85
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any updates planned on the nova shadow priest beta profile?
    as while its working,it just feels much more clunky with 5.0.4
    cheers

  6. #2676
    itzaraya's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    @Sheuron

    I'm getting severe drops in FPS (sometimes as much as half my FPS dropping) as soon as I activate your Fire Mage Pve Profile. Has anyone else mentioned this? Otherwise it seems to work fine.
    Im having the same issue with the fury warrior profile.

  7. #2677
    itzaraya's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Omaha303 View Post
    For those losing FPS, this is a 5.0.4 issue and a lot of threads about it on forums. PQR may be affected by this, not the source of it.
    The FPS loss comes with PQR running that specific profile.

  8. #2678
    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 firepong View Post
    That should work. But again, it's basically the same principle as the original PQR_UnitDistance(). It still run's off of the object manager, so if you do not have a functional Object Manager, it will not work.

    For the people that are getting empty from PQR_UnitDistance() or do not have a working Object Manager, what locale, as in language, are your Clients running at? This might be able to explain why it doesn't work for certain people.
    Where do I implement this? I only experience FPS drops when I actually load Sheuron's Mage profile, and deactivating it instantly cleans things up, so I know it's the profile. Where's the spot where you place this code, Firepong?

  9. #2679
    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 Omaha303 View Post
    For those losing FPS, this is a 5.0.4 issue and a lot of threads about it on forums. PQR may be affected by this, not the source of it.
    As echoed above, the issues are entirely with the profile. All of us have specifically stated that upon activation of them, the FPS stutter. De-activating them cleans things up again, so we're trying to figure out the fix. It's not an FPS issue all around. It's one that specifically happens when you activate the profiles.

  10. #2680
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    As echoed above, the issues are entirely with the profile. All of us have specifically stated that upon activation of them, the FPS stutter. De-activating them cleans things up again, so we're trying to figure out the fix. It's not an FPS issue all around. It's one that specifically happens when you activate the profiles.
    Ah, I see. Hopefully, it gets fixed (:

  11. #2681
    nudex's Avatar Active Member
    Reputation
    37
    Join Date
    Jun 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I know y'all have been waiting for this joyful moment.
    I just created my first Single target and AoE Paladin Prot Rotation.
    Big up to Averykey because i used his MoP Ret rotation to start building my little piece of beauty.

    Now go fellow PQR rotation user and report back to me what needs to be changed / improved!

    Nudex Prot Paladin Rotation
    http://dl.dropbox.com/u/83665029/Nud...20Rotation.rar

    Love Nudex
    Last edited by nudex; 08-29-2012 at 01:33 PM.
    PQR : Nudex Paladin Rotations
    https://dl.dropbox.com/u/83665029/Nudex%20Paladin%20Rotations.rar

  12. #2682
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am wondering, is anyone able to play on a European Server with PQR? I tried it on 3 different PC's now, using the 32 Bit Client for sure ! With updated PQR and I get to the characrter selection, chose my character and then I get PQR Is not logged in. Anyone else with this except of Blinded who I saw also got this problem.

  13. #2683
    bbrainey1995's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    i just updated the SVN..... should be in the warlock folder now
    I went to this link, but there is nothing in the warlock folder
    bubba-pqr-profiles - Revision 261: /trunk

  14. #2684
    bbrainey1995's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you give me the link where you download it? Thanks

  15. #2685
    megabbyte's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    154
    Thanks G/R
    0/2
    Trade Feedback
    10 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aynone doing Hunter SV? Or BM?

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 08:44 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