PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 509 of 779 FirstFirst ... 9409459505506507508509510511512513559609 ... LastLast
Results 7,621 to 7,635 of 11681
  1. #7621
    jjlanp's Avatar Member
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    12
    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
    the frame is more for trying out settings. if more people follow the example i set for them in how to set it up, there's going to be a giant table that you setup and that will have all the values you are changing anyways. so you can just go into that and set the perfect values for yourself there after you've done all of your tests with the frame on the fly. This isn't supposed to be a magical way to save people from ever going into the PQR ability and rotation editor again.... it's just supposed to make it a 100 times easier than entering into those things each time you want to try some different value out, or if you just want to disable a single spell for a fight (like turn off cleaves for a certain boss fight, change your CD keys to see which one feels better to you, etc)
    Of course. Totally agree. Sorry if I came off rude. Definitely appreciate the effort.

    PQR - Rotation Bot
  2. #7622
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jh16 View Post
    Are you using the default Interrupt profile that Xelper releases?

    If so here's something in the "-- Variables: Interrupt --" ability you should know about.
    Code:
    --This is the percentage of the cast to wait before interrupting
    PQR_InterruptPercent = 0

    If the class profile itself has a built-in interrupt then you shouldn't use any Interrupt profiles. Since your interrupt is on cool-down, techniquely the class profile that has a built-in interrupt just gets ignored.
    However if the class profile doesn't have a built-in interrupt then I might suggest using Team Nova's Interrupt profile.

    Same location, sort of looks like the default Interrupt profile Xelper gives out except notice the difference.
    Code:
    --This is the percentage of the cast to wait before interrupting
    PQR_InterruptPercent = math.random(30, 80)
    Instead of going off at 0% it goes off of those two random percentages, 30% and 80%.

    So the point of this post is don't use an Interrupt profile if the current class profile you are using doesn't already have it built-in.

    Hope this helps you, larrybyrdy.
    Code:
    if PQR_InterruptStarted then
       PQR_InterruptStarted = false
    
        --This is the delay before interrupting in seconds.
        PQR_InterruptDelay = 0.5
        
        --This is the percentage of the cast to wait before interrupting
        PQR_InterruptPercent = 0
    end
    As soon as the interrupt has started it will use the same value for PQR_InterruptPercent until the global PQR_InterruptStarted is set back to true. If you want random interrupts all the time, you'll need to not use the global, PQR_InterruptStarted.

  3. #7623
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    the frame is more for trying out settings. if more people follow the example i set for them in how to set it up, there's going to be a giant table that you setup and that will have all the values you are changing anyways. so you can just go into that and set the perfect values for yourself there after you've done all of your tests with the frame on the fly. This isn't supposed to be a magical way to save people from ever going into the PQR ability and rotation editor again.... it's just supposed to make it a 100 times easier than entering into those things each time you want to try some different value out, or if you just want to disable a single spell for a fight (like turn off cleaves for a certain boss fight, change your CD keys to see which one feels better to you, etc)
    I can see how powerful the table will be on healing profiles as you can change spell priorities on the fly as the fight goes on or even from encounter to encounter

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  4. #7624
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    Code:
    if PQR_InterruptStarted then
       PQR_InterruptStarted = false
    
        --This is the delay before interrupting in seconds.
        PQR_InterruptDelay = 0.5
        
        --This is the percentage of the cast to wait before interrupting
        PQR_InterruptPercent = 0
    end
    As soon as the interrupt has started it will use the same value for PQR_InterruptPercent until the global PQR_InterruptStarted is set back to true. If you want random interrupts all the time, you'll need to not use the global, PQR_InterruptStarted.
    or just move the global outside of that closed check
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  5. #7625
    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)
    Is it possible to add Asphyxiate/Strangulate and Arcane Torrent blood elf-racial as interrupts if Mind Freeze is on cooldown? Talking Nova's modded interrupt-profile.

  6. #7626
    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 Ninjaderp View Post
    Is it possible to add Asphyxiate/Strangulate and Arcane Torrent blood elf-racial as interrupts if Mind Freeze is on cooldown? Talking Nova's modded interrupt-profile.
    Yep, do a CD check.

    Code:
    Sstart, Sduration, Senabled = GetSpellCooldown(MindFreezeID)
    Scooldown = (Sstart + Sduration - GetTime())
    
    if Scooldown > 1
    then
    ...
    Asphyxiate need resources you will probably need some way to have the bot save resources.
    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

  7. #7627
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Ninjaderp
    try to change in the initalize ability

    PHP Code:
    if playerClass == "DEATHKNIGHT" then
        
    return 47528 
    for

    PHP Code:
    if playerClass == "DEATHKNIGHT" then
        
    if PQR_SpellAvailable(47528then --mind freeze
            
    return 47528
        
    else
            if 
    PQR_SpellAvailable(108194then --asphyxiate
                
    return 108194
            
    elseif PQR_SpellAvailable(28730then --arcante torrent
                
    return 28730
            end
        end 
    Try it and say what happens. I have no ideia if it will work XD

  8. #7628
    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 cassrgs View Post
    @Ninjaderp
    try to change in the initalize ability

    PHP Code:
    if playerClass == "DEATHKNIGHT" then
        
    return 47528 
    for

    PHP Code:
    if playerClass == "DEATHKNIGHT" then
        
    if PQR_SpellAvailable(47528then --mind freeze
            
    return 47528
        
    else
            if 
    PQR_SpellAvailable(108194then --asphyxiate
                
    return 108194
            
    elseif PQR_SpellAvailable(28730then --arcante torrent
                
    return 28730
            end
        end 
    Try it and say what happens. I have no ideia if it will work XD
    The interrupt profile is not constantly checking your CLASS, you could change that, dunno how much that will hit on the performance side.

    Make a tabbled list of spells that interrupt?
    if playerClass == "DEATHKNIGHT" then
    return PQ_InterrruptSpells = {47528,28730}

    That wont work out of box you will have to change almost everything point to this function.

    ==

    My bad, it is >.>

    local interruptSpell = PQR_InterruptSpell()

    Yeah your solution should work.
    Last edited by Rubim; 01-17-2013 at 04:14 PM.
    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

  9. #7629
    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)
    thanks both of you rubim, cassgrs, I will try it in a heroic!

    As rubim said, I got severe fps-lag with that coded in. I got no problem using shift (stoprotation in rubims blood dk) and using it manually until there is a way of it working without fps suffering.
    Last edited by Ninjaderp; 01-17-2013 at 05:19 PM.

  10. #7630
    geroth22's Avatar Member
    Reputation
    3
    Join Date
    Jun 2011
    Posts
    17
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any chance of getting pqr to work with the ptr tonight? Got some raid testing to do.

  11. #7631
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    thanks both of you rubim, cassgrs, I will try it in a heroic!

    As rubim said, I got severe fps-lag with that coded in. I got no problem using shift (stoprotation in rubims blood dk) and using it manually until there is a way of it working without fps suffering.
    Another thing that i realized its that maybe Arcane torrent wont work all the time as interrupt in those times you have a target but its not in melee range since dont seem to have a distance check (if youre away from target casting howling blast or something)

  12. #7632
    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)
    ^ Yeah thats true as well, I may try remove the arcane torrent-portion and try it again but for now its sleepytime here. Take care!

  13. #7633
    larrybyrdy's Avatar Member
    Reputation
    2
    Join Date
    Mar 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jh16 View Post
    Are you using the default Interrupt profile that Xelper releases?

    If so here's something in the "-- Variables: Interrupt --" ability you should know about.
    Code:
    --This is the percentage of the cast to wait before interrupting
    PQR_InterruptPercent = 0

    If the class profile itself has a built-in interrupt then you shouldn't use any Interrupt profiles. Since your interrupt is on cool-down, techniquely the class profile that has a built-in interrupt just gets ignored.
    However if the class profile doesn't have a built-in interrupt then I might suggest using Team Nova's Interrupt profile.

    Same location, sort of looks like the default Interrupt profile Xelper gives out except notice the difference.
    Code:
    --This is the percentage of the cast to wait before interrupting
    PQR_InterruptPercent = math.random(30, 80)
    Instead of going off at 0% it goes off of those two random percentages, 30% and 80%.

    So the point of this post is don't use an Interrupt profile if the current class profile you are using doesn't already have it built-in.

    Hope this helps you, larrybyrdy.
    Fantastic, thanks man. Basically what I was doing was this. I was running Nova's Arms single target profile. Then I'd alt+c to activate interrupts set to everything so it'd interrupt on cooldown (glyphed pummel for dmg). I assume then that I was using the default interrupt built into PQR. If so, I can just go find that code and change the percentage like you listed. Either way, I have a decent idea of where to start hunting so thank you.

  14. #7634
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, PQR doesn't work on test realm, current build is 16467, do you can tell me how make a new offsets?

  15. #7635
    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)
    Originally Posted by WWF View Post
    Hi, PQR doesn't work on test realm, current build is 16467, do you can tell me how make a new offsets?
    im sure Xelper will get it as soon as he can.

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