PQR - Rotation Bot menu

User Tag List

Page 468 of 779 FirstFirst ... 368418464465466467468469470471472518568 ... LastLast
Results 7,006 to 7,020 of 11681
  1. #7006
    snowhawk's Avatar Contributor
    Reputation
    147
    Join Date
    Aug 2008
    Posts
    238
    Thanks G/R
    42/130
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by paintpauller View Post
    to delay some code for x amount of seconds in this case 2 seconds. its a Interrupt profile so yes i am, just using that to only run the code once. the PQR_WriteToChat is just for testing to see y it wasnt working and wont be there when i get it to work.
    If you just need to delay your rotation for 2 seconds, consider using PQR_DelayRotation(2). To use it, whenever you need to delay, call PQR_DelayRotation(2) which delays for 2 seconds, then return true. When the ability returns true, the rotation simply pauses for 2 seconds then continues.

    Originally Posted by paintpauller View Post
    cold some1 let me know how to use
    PHP Code:
    PQR_DelayRotation() 
    when ever i try to use it it doesnt look like its doing anything even at 20 seconds it still not noticeable.



    i have made the following changes to your code mentally but it still does not work:
    PHP Code:
    if PQR_InterruptStarted then
        PQR_InterruptStarted 
    false
        
        local Start 
    GetTime()
        
        if 
    Start GetTime() == 2 then
            PQR_WriteToChat
    ("Two seconds elapsed.")
        
    end
        
        
    if Start GetTime() >= 2 then
            PQR_WriteToChat
    ("Two seconds or more have elapsed.")
        
    end
    end 
    =(
    If you want to try something a little fancy, you could always look at Xelpers code for handling shields on heroic spirit kings. Here's a smaller version that only checks to see if the immunities are up on certain targets and halts the rotation until the immunities are gone (with a 0.5sec latency delay).

    PHP Code:
    -- Pause Rotation Handler Variable is simply a timestamp on when to
    --                          continue rotation.
    if 
    PQR_PauseRotation == nil then
        PQR_PauseRotation 
    0
    elseif PQR_PauseRotation GetTime() then
        
    return true
    else
        
    PQR_PauseRotation 0
    end

    -- Check for Immunities on when to stop
    local immunities 
    = { 117697117961118162 }

    for 
    i,v in ipairs(immunities)
        
    local immunityName_____immunityTimeToExp UnitBuffID("target",v)
        if 
    immunityName then
            StopAttack
    ()
            
    SpellStopCasting()
            
    PQR_PauseRotation GetTime() + immunityTimeToExp 0.5
            
    return true
        end
    end 
    Last edited by snowhawk; 12-16-2012 at 12:42 AM.

    PQR - Rotation Bot
  2. #7007
    twizt3dkitty's Avatar Member
    Reputation
    7
    Join Date
    Apr 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does this need a protected lua remover to run? I ask because I occasionally catch bugs in swatter from pqr.lua about protected. the errors are origionating fron Nui, but the debuging code plays to pqr data .lua.

  3. #7008
    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 twizt3dkitty View Post
    does this need a protected lua remover to run? I ask because I occasionally catch bugs in swatter from pqr.lua about protected. the errors are origionating fron Nui, but the debuging code plays to pqr data .lua.
    I've never used one and been using it just fine. I get errors about calling protected functions in various addons, but that's been going on since 5.0 when they made it impossible to make changes to things in combat so I just ignore them and everything is fine.
    Former PQR Developer

  4. #7009
    twizt3dkitty's Avatar Member
    Reputation
    7
    Join Date
    Apr 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kuukuu View Post
    I've never used one and been using it just fine. I get errors about calling protected functions in various addons, but that's been going on since 5.0 when they made it impossible to make changes to things in combat so I just ignore them and everything is fine.
    the problem I had was testing on mobs or dungeons, when one would die, after throwing hte error, the bot would entirely stop working when I attacked another mob. Im still trying to learn how to use the bot though, so its possible i did something wrong.

  5. #7010
    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 twizt3dkitty View Post
    the problem I had was testing on mobs or dungeons, when one would die, after throwing hte error, the bot would entirely stop working when I attacked another mob. Im still trying to learn how to use the bot though, so its possible i did something wrong.
    It shouldn't need any LUA unlocked. Its got its own built in LUA unlocked I believe. I have never had any problems with functions not working that are protected. Most likely, you need to turn taint logging off. I don't know how to do it, but it was listed a page or 2 back.

    Sent from my SAMSUNG-SGH-I747 using Tapatalk 2

  6. #7011
    twizt3dkitty's Avatar Member
    Reputation
    7
    Join Date
    Apr 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    It shouldn't need any LUA unlocked. Its got its own built in LUA unlocked I believe. I have never had any problems with functions not working that are protected. Most likely, you need to turn taint logging off. I don't know how to do it, but it was listed a page or 2 back.

    Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
    /console taintLog 0 is on page 461 i think it was, doing that and trying again, thanks.

  7. #7012
    Roxor77's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    7
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I've been trying for a while to get it to work, but after a couple of attempts I gave up.
    KickMyDog i have been trying your survival profile, During Lei Shi, Terrace of Endless Spring, During the Adds phase, it wont attack the adds on single target survival profile, not sure whats wrong with it...

  8. #7013
    tatakau's Avatar Member
    Reputation
    2
    Join Date
    Mar 2008
    Posts
    93
    Thanks G/R
    10/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone put a hex code for the focus with x5 maelstrom? will +rep

  9. #7014
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tatakau View Post
    can someone put a hex code for the focus with x5 maelstrom? will +rep
    Do a what now?

  10. #7015
    hellobello25's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Monk not in interupt list?

  11. #7016
    twizt3dkitty's Avatar Member
    Reputation
    7
    Join Date
    Apr 2009
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So I just ran this semi-successfully through LFR Terrace, Protectors went great, but when I got to Tsulong, about halfway through I got a taint error in swatter complaining about protected functions, after this the bot just quit working, i even tryed clearing swatter and restarting/attaching pqr in fight, it would not restart for me, do i need to do /console taintlog 0 everytime i log on? If not then what else can I try to keep the bot running?

  12. #7017
    sgdevoid's Avatar Sergeant
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried looking and searching for the answer, but didn't have any luck.

    How would you code something to cast a macro instead of a spell? Or is that not possible... Thanks in advance.

  13. #7018
    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 sgdevoid View Post
    I tried looking and searching for the answer, but didn't have any luck.

    How would you code something to cast a macro instead of a spell? Or is that not possible... Thanks in advance.
    API RunMacro - WoWWiki - Your guide to the World of Warcraft

    Please if someone helped you donate rep to them.

  14. #7019
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Frost Mage profile is complete! I also caught some unexpected errors with Fire Mage so I'l just testing both the Fire and Frost profile in a quick LFR again before releasing and updating. =)

  15. #7020
    chk's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If somebody wants to make me a pvp 70 sub rogue rotation I'd be happy to pay them for their efforts.

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