PQR - Rotation Bot menu

User Tag List

Page 99 of 779 FirstFirst ... 499596979899100101102103149199599 ... LastLast
Results 1,471 to 1,485 of 11681
  1. #1471
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    is there new mop beta offsets for the recent patch? thnx

    PQR - Rotation Bot
  2. #1472
    wowcrazy4's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    kinkeh i want to ty for anwser m question that i have been asking ty

  3. #1473
    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 Mpzor View Post
    I dont see any difference with yours and mine except for the extra ")" in the end, so is that all? But except for that it looks good? Think I understand if it is

    EDIT: Why wont this or the previous code work? I added the extra ")" in the end so its not that.

    Code:
    local _, BlackArrowCD = GetSpellCooldown(3674)
    
    if IsSpellInRange(GetSpellInfo(3044), "target")  ~= 1 then return false end
    
    F_SwitchToHawk() 
    
    if BlackArrowCD > 4 and UnitPower("player") > 22 then return true end
    Code:
    local _, ExplosiveShotCD = GetSpellCooldown(53301)
    
    if IsSpellInRange(GetSpellInfo(3044), "target")  ~= 1 then return false end
    
    F_SwitchToHawk() 
    
    if ExplosiveShotCD > 4 and UnitPower("player") > 22 then return true end
    it uses AS way to often, almost like its ignoring the and in the code so it casts AS if the power is at 22 or higher...
    try nesting them

    Code:
    if BlackArrowCD > 4 and UnitPower("player") > 22 then return true end to this
    
    if UnitPower("player") > 22 then
          if BlackArrowCD > 4 then return true end
    else
         return false
    end
    however i see another issue thats minor you need to check the cd time with the current time so try this:

    Code:
    if BlackArrowCD - GetTime() > 4 and UnitPower("player") > 22 then return true end
    just a note if you need to track anthing with a timer or duration it prob needs a GetTime() call to compare it to the if then check.

    Please if someone helped you donate rep to them.

  4. #1474
    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)
    Bot smart, that's all there is to it.

  5. #1475
    nazgul111's Avatar Site Donator The Faithless
    Reputation
    256
    Join Date
    Apr 2010
    Posts
    303
    Thanks G/R
    20/14
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lexi777 View Post
    Bot smart, that's all there is to it.
    thats a rotation bot as far as i know so i have no idea how blizzard could ever know you are using it even looking right at your wow window remotely... any1 saying that he was banned for this have been most likely banned for totally different thing...

  6. #1476
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    so mop beta offsets up? will pay for a legit answer, if at all possible...haha, itching to use it again

    thanks
    Last edited by lostinthewoodslol; 07-15-2012 at 06:08 AM.

  7. #1477
    Mpzor's Avatar Member
    Reputation
    6
    Join Date
    Feb 2012
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    try nesting them

    Code:
    if BlackArrowCD > 4 and UnitPower("player") > 22 then return true end to this
    
    if UnitPower("player") > 22 then
          if BlackArrowCD > 4 then return true end
    else
         return false
    end
    however i see another issue thats minor you need to check the cd time with the current time so try this:

    Code:
    if BlackArrowCD - GetTime() > 4 and UnitPower("player") > 22 then return true end
    just a note if you need to track anthing with a timer or duration it prob needs a GetTime() call to compare it to the if then check.
    Neither of them work. I dont understand what's wrong. It should work from what i've read from other ppl codes etc

  8. #1478
    katuro's Avatar Member
    Reputation
    2
    Join Date
    Apr 2012
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by katuro View Post
    is there a DK tank profile yet? nova's profile doesnt work =/
    would really appreciate a answer on this. or for someone to tell me how to get nova's blood profiles working

  9. #1479
    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)
    ^Have you tried contacting bu_ba or mentally?

  10. #1480
    Noelpqr's Avatar Member
    Reputation
    3
    Join Date
    Oct 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by katuro View Post
    would really appreciate a answer on this. or for someone to tell me how to get nova's blood profiles working
    do you have "PQR_Nova_Data.lua" in pqr's data folder?

  11. #1481
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nova team blood dk profile work fine, i used it as late as this morning...you are doing something wrong mate.

  12. #1482
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    delete this post, i failed
    Last edited by paveley; 07-15-2012 at 09:05 AM.

  13. #1483
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xLegendx View Post
    Is there any DK Frost PvP profiles?
    Never really noticed one before
    Sheuron has one that works great. Here is a link to his profile pack: http://goo.gl/rseZ0
    Last edited by paveley; 07-15-2012 at 09:02 AM.

  14. #1484
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lostinthewoodslol View Post
    so mop beta offsets up? will pay for a legit answer, if at all possible...haha, itching to use it again

    thanks
    1st thing to check is the offset downloader within PQR if it wont download the new offsets that means Xelper hasn't gotten around to doing it. Xelper is the only one who can get offsets. He as well usually post that he's uploaded the new offsets.

  15. #1485
    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 Mpzor View Post
    Neither of them work. I dont understand what's wrong. It should work from what i've read from other ppl codes etc
    can you upload your files or pm me with a link I'll see if i can find anything wrong with it.

    Please if someone helped you donate rep to them.

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 02:31 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