PQR - Rotation Bot menu

User Tag List

Page 431 of 779 FirstFirst ... 331381427428429430431432433434435481531 ... LastLast
Results 6,451 to 6,465 of 11681
  1. #6451
    jarrito66's Avatar Active Member
    Reputation
    20
    Join Date
    Mar 2012
    Posts
    81
    Thanks G/R
    1/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    hunter profile

    KMD_All_Hunter_Rotations_v17beta.zip

    My beta profile, I've tested the SV and BM ones. I need some more time on the MM ones atm.
    Did you ever know that you're my hero?

    PQR - Rotation Bot
  2. #6452
    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 kickmydog View Post
    hunter profile

    KMD_All_Hunter_Rotations_v17beta.zip

    My beta profile, I've tested the SV and BM ones. I need some more time on the MM ones atm.
    Thanks Kick! Make sure you update your Sig so people know it's updated without (presumably) having to bug you.

  3. #6453
    Xound's Avatar Sergeant
    Reputation
    11
    Join Date
    Sep 2012
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this a good place to ask for some help integrating spells into a rotation?

    I'm trying to add Redirect [73981] into a Rogue profile, however, I've found that if I just add it and put it at the top of the priority list it'll just spam it on the same target and pause the rotation, obviously, if I switch targets it works perfectly as it'll go on CD and then the rotation will continue

    Was trying to see if there is a 'new target' modifier or something similar, or, if there was a previous profile that utilized the spell I can do my homework on how they made it work.

  4. #6454
    lawlmoto's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xound View Post
    Is this a good place to ask for some help integrating spells into a rotation?

    I'm trying to add Redirect [73981] into a Rogue profile, however, I've found that if I just add it and put it at the top of the priority list it'll just spam it on the same target and pause the rotation, obviously, if I switch targets it works perfectly as it'll go on CD and then the rotation will continue

    Was trying to see if there is a 'new target' modifier or something similar, or, if there was a previous profile that utilized the spell I can do my homework on how they made it work.
    There is a target changed event.

    Sent from my Galaxy Nexus using Tapatalk 2

  5. #6455
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    Thanks Kick! Make sure you update your Sig so people know it's updated without (presumably) having to bug you.
    Ok here is my completed V17 hunter profile.

    http://www.mediafire.com/?plf900i1ke87773

    I've tested all specs, and they should all work. If you have any errors please let me know.

    I will be spending some time later on this week or next cleaning up the code a little and checking to make sure legacy code that has no further use is removed.

    As a warning I have removed the constants on using Rapid Fire on pushdown, previously it would not use rapid fire if bloodlust/heroism was up. I figure if you are using the manual cooldown button you should know if you want to really use Rapid Fire at that point.
    Last edited by kickmydog; 11-28-2012 at 09:38 PM.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  6. #6456
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Ok here is my completed V17 hunter profile.

    KMD_All_Hunter_Rotations_v17.zip

    I've tested all specs, and they should all work. If you have any errors please let me know.

    I will be spending some time later on this week or next cleaning up the code a little and checking to make sure legacy code that has no further use is removed.

    As a warning I have removed the constants on using Rapid Fire on pushdown, previously it would not use rapid fire if bloodlust/heroism was up. I figure if you are using the manual cooldown button you should know if you want to really use Rapid Fire at that point.
    Good Job. let's see if i can learn new stuff from your profile XD

    btw, i think you really should add a pause code to ur rotation.
    i was really frustrated if any stray mob attack me randomly and i got dismounted.

    Also here is a code for misdirection to pet if anyone want to use.

    PHP Code:
    if UnitExists("Pet")
    and 
    not UnitIsDead("Pet")
    and 
    PQR_IsOutOfSight("pet") == false
    and UnitBuffID("Player",35079) == nil
    and UnitBuffID("Player",34477) == nil
    and GetSpellCooldown(34477) == 0 then
        
    return true 
    end 
    you can change the "pet" to "focus" and set tank to focus to misdirect on tank all the time.
    Last edited by darksahde; 11-28-2012 at 11:06 PM.

  7. #6457
    iEthos's Avatar Sergeant
    Reputation
    16
    Join Date
    Aug 2010
    Posts
    42
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone write me a code for Flash of Light only on 3 stacks of Selfless Healer?

  8. #6458
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by darksahde View Post
    Good Job. let's see if i can learn new stuff from your profile XD

    btw, i think you really should add a pause code to ur rotation.
    i was really frustrated if any stray mob attack me randomly and i got dismounted.

    Also here is a code for misdirection to pet if anyone want to use.

    PHP Code:
    if UnitExists("Pet")
    and 
    not UnitIsDead("Pet")
    and 
    PQR_IsOutOfSight("pet") == false
    and UnitBuffID("Player",35079) == nil
    and UnitBuffID("Player",34477) == nil
    and GetSpellCooldown(34477) == 0 then
        
    return true 
    end 
    you can change the "pet" to "focus" and set tank to focus to misdirect on tank all the time.
    I think there are a couple of examples of pause code in this thread. I honestly don't find it to be a problem enough for me to code it.

    One thing about your misdirection code, it will constantly use misdirection even when it is not needed.

    Here is Sheuron's old Misdirection code.

    PHP Code:
    --Code provided by Sheuron
    local InParty 
    GetNumGroupMembers()
    if 
    InParty and UnitInRaid("player") == nil then
      
    for 1InPartydo
      
    local member "party"..tostring(i)
      if 
    UnitGroupRolesAssigned(member) == "TANK" and UnitThreatSituation(member,"target") ~= 3 then
        CastSpellByName
    ("Misdirection")
        
    SpellTargetUnit(member)
        
    end
      end
    end 
    You might want to try messing around with it to get it to work.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  9. #6459
    Fiklam's Avatar Member
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iEthos View Post
    Can anyone write me a code for Flash of Light only on 3 stacks of Selfless Healer?
    i use it
    PHP Code:
    local _,_,_sh UnitBuffID"player""selfless healer" )
    if 
    members[1].HP 30 
    and sh == 3 then
      PQR_CustomTarget 
    members[1].Unit
      
    return true
    end 
    with lua file from restor druid profile
    Last edited by Fiklam; 11-29-2012 at 12:23 AM.

  10. #6460
    darksahde's Avatar Master Sergeant
    Reputation
    12
    Join Date
    Jan 2012
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I think there are a couple of examples of pause code in this thread. I honestly don't find it to be a problem enough for me to code it.

    One thing about your misdirection code, it will constantly use misdirection even when it is not needed.

    Here is Sheuron's old Misdirection code.

    PHP Code:
    --Code provided by Sheuron
    local InParty 
    GetNumGroupMembers()
    if 
    InParty and UnitInRaid("player") == nil then
      
    for 1InPartydo
      
    local member "party"..tostring(i)
      if 
    UnitGroupRolesAssigned(member) == "TANK" and UnitThreatSituation(member,"target") ~= 3 then
        CastSpellByName
    ("Misdirection")
        
    SpellTargetUnit(member)
        
    end
      end
    end 
    You might want to try messing around with it to get it to work.
    my goals was to keep up misdirection at all time. that code worked perfectly for me. XD.

    if i want to md on tank, ill set focus to tank and have another version of the skill to do the job.

  11. #6461
    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 Xound View Post
    Is this a good place to ask for some help integrating spells into a rotation?

    I'm trying to add Redirect [73981] into a Rogue profile, however, I've found that if I just add it and put it at the top of the priority list it'll just spam it on the same target and pause the rotation, obviously, if I switch targets it works perfectly as it'll go on CD and then the rotation will continue

    Was trying to see if there is a 'new target' modifier or something similar, or, if there was a previous profile that utilized the spell I can do my homework on how they made it work.
    This is what I used in my old DS rogue profiles, should still work.

    Code:
    if GetComboPoints("player","target")==0
    and IsUsableSpell(5171) then
    	return true
    end

  12. #6462
    PIPOL13's Avatar Banned
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    who has a good profile on pve cat?

  13. #6463
    monopoly8's Avatar Member
    Reputation
    2
    Join Date
    Nov 2012
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    a good feral pve profile would be firekitteh and kitty cleave as the solo target profile.

  14. #6464
    PIPOL13's Avatar Banned
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by monopoly8 View Post
    a good feral pve profile would be firekitteh and kitty cleave as the solo target profile.
    can you give the link above for kitty cleave, I can not find, and firekitteh not need me to him FPS drops

  15. #6465
    Edsaxe's Avatar Member
    Reputation
    2
    Join Date
    Sep 2011
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone have a warlock pvp profile in the works?
    tried searching but came up with nothing

    if not, anyone had success in pvp with a pve lock profile?
    i would assume demonology would be best for the amount of instants?

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:16 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search