PQR - Rotation Bot menu

User Tag List

Page 560 of 779 FirstFirst ... 60460510556557558559560561562563564610660 ... LastLast
Results 8,386 to 8,400 of 11681
  1. #8386
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Working on holy profile, trying to sort everything out.

    Been testing a lot and I was wondering if I should change abilities like this.

    PHP Code:
    if members[1].HP <= 65 and not PQR_IsMoving(1then
      PQR_CustomTarget 
    members[1].Unit
      
    return true
    end 
    to this.

    PHP Code:
    for i=1,#members do
        
    if members[1].HP <= 65 and not PQR_IsMoving(1then
            PQR_CustomTarget 
    members[1].Unit
            
    return true
        end
    end 
    It will look through the players like this right? I call GroupInfo() in my startup, not sure if that will make a difference, I just noticed a few profiles had a mix of the above, which I thought was strange.

    Also does "do" need its own "end"? I assume it does, but a lot of profiles have it and don't have it, so I can't confirm.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

    PQR - Rotation Bot
  2. #8387
    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 averykey View Post
    Working on holy profile, trying to sort everything out.

    Been testing a lot and I was wondering if I should change abilities like this.

    PHP Code:
    if members[1].HP <= 65 and not PQR_IsMoving(1then
      PQR_CustomTarget 
    members[1].Unit
      
    return true
    end 
    to this.

    PHP Code:
    for i=1,#members do
        
    if members[1].HP <= 65 and not PQR_IsMoving(1then
            PQR_CustomTarget 
    members[1].Unit
            
    return true
        end
    end 
    It will look through the players like this right? I call GroupInfo() in my startup, not sure if that will make a difference, I just noticed a few profiles had a mix of the above, which I thought was strange.

    Also does "do" need its own "end"? I assume it does, but a lot of profiles have it and don't have it, so I can't confirm.
    That would cycle through your members' table yes, but you'd need to use members[i] not members[1] or you'd only check the 1st entry in the table over and over again.

    And as far as I know "do" loops do need an end so it knows what it should be doing in the loop, just like any other loop.
    Former PQR Developer

  3. #8388
    Wonderworm's Avatar Sergeant
    Reputation
    26
    Join Date
    Jul 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Made a mashup of Soapbox's free boomkin profile and Nerder's boomkin profile and added PQInterface to it and a very few small adjustments. You guys can check it out here (Boomkin Mashup Profile - PVE (Soapbox/Nerder)) and be sure to give Soapbox and Nerder some props for the great profiles.

  4. #8389
    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)
    Originally Posted by crystal_tech View Post
    The SVN we use has lots of old profiles from 4.3 onyas is in there.
    Great thanks a lot for letting me know !!!

  5. #8390
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kclux View Post
    I am starting to remember partially how he did it, he was creating macros which you could use then as normal macros aka with any keybind you want. The macro was setting a cvar like PQR_HealingRain=1 or something like that and then he was checking for the cvars and executing a spell if there was a match. Was awesome, I wonder why noone else ever used this in his profiles since it is making it so much more interactive.

    I would "kill" for his old profile to figure out how he did it to use it for myself
    >.>

    If he did like that then i did something fancier.

    With my DK profile you can hotkey any skill available, by simply /rcast ID.
    You can macro with:
    Code:
    #showtooltip Chains of Ice
    /rcast 45524
    With my Warrior Tank profile, you can Queue Shield Barrier and Shield Block using the same system, but bot will save Rage to use it.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  6. #8391
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Figured it out more or less, groupinfo() wasn't being called so it couldn't move through the logic.
    Last edited by averykey; 03-11-2013 at 02:00 PM.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  7. #8392
    Kaylo's Avatar Active Member
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    68
    Thanks G/R
    11/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looking for some help with 2 abilities. It's for enhancement shaman rotation.

    I have problem with Flame Shock in two different scenarios.

    First problem is during AoE mode. I want it to cast Flame Shock(8050) if it isnt up or about to run out in AoE mode.
    This works during AoE mode and he continues with the other spells. The problem is the rotation stops while in "non AoE" mode. I want the rotation to continue in normal mode without casting Flame Shock and do my normal single target rotation. We get Unleashed Flame buff after casting Unleash Elements.
    PHP Code:
    local debufftimer select(7,UnitDebuffID("target",8050,"PLAYER")) 

    if 
    AoE
    and not debufftimer 
    or debufftimer GetTime() < 3  

    then
    return true end 

    Second problem is that I only want to cast Flame Shock(8050) while Unleashed Flame buff(73683) is up. The rotation works if Unleashed Flame buff(73683) is up on me but the rotation stops if its not. Unleashed Elements isnt cast on cooldown with the 5.2 changes and new haste specc so Flame Shock is above UE. Would be easy to just put UE over Flame Shock but i'm trying to stick with the supposed rotation.
    PHP Code:
    local debufftimer select(7,UnitDebuffID("target",8050,"PLAYER")) 

    if 
    UnitBuffID("player",73683)
    and 
    not debufftimer 
    or debufftimer GetTime() < 4  

    then
    return true end 
    I dont know what to write to just make the rotation continue if the above requirements isnt met.

  8. #8393
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Damn these ninja patches New offsets are on wow so PQR temporarily down if you have logged out

  9. #8394
    qcorn's Avatar Member
    Reputation
    3
    Join Date
    Sep 2007
    Posts
    94
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    small new patch, guess offset doesnt work anymore?

  10. #8395
    Chicotheman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do I delete this T_T Wrong info, sorry.

  11. #8396
    Jubalee's Avatar Member
    Reputation
    2
    Join Date
    Nov 2011
    Posts
    39
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I guess we are screwed then because I needed to log on for raid but patch has messed up everything. Guess there is no way to contact Xelper to get new offsets before 8

  12. #8397
    ganjador's Avatar Banned
    Reputation
    67
    Join Date
    Aug 2012
    Posts
    64
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by qcorn View Post
    small new patch, guess offset doesnt work anymore?
    i'm guessing this? ^

  13. #8398
    piratepetey's Avatar Sergeant
    Reputation
    4
    Join Date
    Apr 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Correct. New version, new offsets required. Xelper is normally pretty hot on this, so be patient for a little while

  14. #8399
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you don't log out you're fine, still playing with it on .

    edit:

    Here is paladin holy, you need to move cleanse in to the rotation to use it, hasn't been tested but should work. Kind of ready for raiding without all the special boss code.

    Download PALADIN.rar @ UppIT

    Update for ret/prot coming out soon also releasing arms/fury soon as well, ;D.

    See any problems with holy, please let me know. First healing profile, bound to have a problem.

    focus will get beaconed+SS.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  15. #8400
    Guvnor's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Feb 2013
    Posts
    94
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok edit did not work lol
    Last edited by Guvnor; 03-11-2013 at 02:08 PM.

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 01:13 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