PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 222 of 779 FirstFirst ... 122172218219220221222223224225226272322722 ... LastLast
Results 3,316 to 3,330 of 11681
  1. #3316
    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)
    I've updated my BM and SV profiles at little.

    Thanks for Firepong for fixing the [PETAUTOTARGET] ability.

    BM: http://www.mediafire.com/?zczgqa6no3v43kd

    - Changed rapid fire to only work when Focus Fire is not active, so as not to waste haste.
    - Changed Readiness so that it only uses when DPS abilities are on cool down, and Rapid Fire is on cool down for 3 to 2 mins.
    - Changed Focus Fire to not be used if Rapid Fire is active, so as not to waste haste.
    - Changed Bestial Wrath so it will not use itself when Bestial Wrath is already active and readiness has been used.
    - Placed Kill Shot into the rotation.
    - Enabled automatic pet assist if you have no target currently and your pet does.


    SV: http://www.mediafire.com/?5y7n656m66178ia


    - Changed the order of Murder of Crows to improve up time for SV
    - Placed Dire Beast into the rotation.
    - Enabled automatic pet assist if you have no target currently and your pet does.
    Last edited by kickmydog; 09-02-2012 at 02:13 PM. Reason: fixed a problem with readiness
    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

    PQR - Rotation Bot
  2. #3317
    nilrem2004's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2009
    Posts
    810
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok noe a technical question for more experienced. If we look at rotation editor and for example we have 10 abilities, looking from top if bot executes 6th ability from top, does it then continue to seventh etc ability or it goes from the beginning on top?
    Supporter of Frozen.

  3. #3318
    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 nilrem2004 View Post
    Ok noe a technical question for more experienced. If we look at rotation editor and for example we have 10 abilities, looking from top if bot executes 6th ability from top, does it then continue to seventh etc ability or it goes from the beginning on top?
    Starts from the beginning again
    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

  4. #3319
    nilrem2004's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2009
    Posts
    810
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Starts from the beginning again
    ty for fast reply
    Supporter of Frozen.

  5. #3320
    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 Unasrage View Post
    Hi m8 nice working profile but u seem so have the same issue has my profile =(

    On manual Fire Elemental Totem cast it just get replaced by Searing totem and you lose the FE cd.

    mabe you can fix what i can't.. making a way of pqr seeing if u already have FE totem Up and doesnt cast any outher fire totem.

    and mabe make like Alt push pause the rotacion so that ya can stop dps on spine or cast a manual spell

    keep me posted on any update plz =)
    after looking at the code i think you can fix that by change Searing Totem to
    PHP Code:
    -- check distancecheck toteminfocheck combat
    local _
    ,ST GetTotemInfo(1)
    local dist PQR_UnitDistance("player","target")

    if 
    ST == "Fire Elemental Totem" then
        
    return false
        end
        
    if UnitExists("target") ~= nil and dist <= 20 and (dist or (not IsLeftShiftKeyDown() and not IsLeftControlKeyDown())) and ST ~= "Searing Totem" then
            DestroyTotem
    (1)
            return 
    true
        end 
    or
    PHP Code:
    -- check distancecheck toteminfocheck combat
    local _
    ,ST GetTotemInfo(1)

    if 
    UnitExists("target") ~= nil then
        local dist 
    PQR_UnitDistance("player","target")
        if 
    dist <= 20 and (dist or (not IsLeftShiftKeyDown() and not IsLeftControlKeyDown())) and (ST ~= "Searing Totem" or ST ~= "Fire Elemental Totem"then
            DestroyTotem
    (1)
            return 
    true
        end
    end 

  6. #3321
    Fumi's Avatar Contributor CoreCoins Purchaser
    Reputation
    207
    Join Date
    Feb 2008
    Posts
    561
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post


    SV: KMDSV_MOP_v6.zip


    - Changed the order of Murder of Crows to improve up time for SV
    - Placed Dire Beast into the rotation.
    - Enabled automatic pet assist if you have no target currently and your pet does.
    i've tested your SV, i only found one problem which was that it poped readiness befor i even used Rapid Fire, meaning it wasted Readiness :S but i like the update alot, was tired of spaming keybinds to pop Dire Beast + rep

  7. #3322
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How can i check if glyph is inscribed? Tried various functions but cant get it to work.

    Code:
    local _,_,_,Gid = GetGlyphSocketInfo(5,nil)
    local glyphs = {}
    
    if Gid == glyphs then
    	return true
    end
    And how can i check all glyph slots?
    Code:
    GetGlyphSocketInfo(1..6,nil)
    Thats my codes, will they work? Erm stupid question they dont work ;p
    Last edited by vorn10; 09-02-2012 at 01:50 PM.

  8. #3323
    graficss's Avatar Private
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    and in DC who can do a profile of Frost 2 DW pvp pve? (Sorry for the translator

  9. #3324
    nilrem2004's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2009
    Posts
    810
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now I have stumbled upon a dilemma. Situation is as follows, to maximize Drain Soul execution below 20% I'm making it so it refreshes dots via Soulburn + Soul Swap. Now if we use glyph of Soul Swap for better multidotting we can refresh dots only every 30 seconds and UA for me atleast non buffed expires for 13 seconds. I can make it like this to remove Soul Swap glyph so then we can refresh dots between Drain Soul casts and do multidotting without Soul Swap. Posibility is to make for example Soul Swap used only on Left Shift or if mob is about to die to do it automatically.

    any thoughts?
    Supporter of Frozen.

  10. #3325
    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 Fumi View Post
    i've tested your SV, i only found one problem which was that it poped readiness befor i even used Rapid Fire, meaning it wasted Readiness :S but i like the update alot, was tired of spaming keybinds to pop Dire Beast + rep
    Thanks for that catch. I had a ">" symbol the wrong way around.

    I'm updating the link as I post.
    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

  11. #3326
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    UPDATED Elemental Shaman
    changes:
    - left ALT pause
    - not canceling Fire Elemental Totem
    - added Thunderstorm (will be used only if glyphed)
    Info:
    Left Shift - light AoE (FS, magma totem(if in range <8y), ES(7 stacks),chain lightning
    Left Control - heavy AoE (FS, magma totem, earthquake, ES(7stacks), thunderstorm(glyphed), chain lightinig

    Please post what to add/change.
    I cant check how much can push, dont have elemental gear.
    Check if Thunderstorm working cuz glyph is expensive ;p (i was checking with inscribed "deluge" and was working for its IDs so should work if u got correct glyph).

  12. #3327
    Pzy's Avatar Member
    Reputation
    5
    Join Date
    Jul 2011
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nilrem2004 View Post
    Now I have stumbled upon a dilemma. Situation is as follows, to maximize Drain Soul execution below 20% I'm making it so it refreshes dots via Soulburn + Soul Swap. Now if we use glyph of Soul Swap for better multidotting we can refresh dots only every 30 seconds and UA for me atleast non buffed expires for 13 seconds. I can make it like this to remove Soul Swap glyph so then we can refresh dots between Drain Soul casts and do multidotting without Soul Swap. Posibility is to make for example Soul Swap used only on Left Shift or if mob is about to die to do it automatically.

    any thoughts?
    hei.....
    i think its better when u do the soulswap on LS for example, cause when ure in a bossfight, the most time u have only one boss, and there u dont need to multidot via SS, also for example at warmaster blacky, ther u have more mobs, but u dont need to refresh the dots via ss, cause u have enough time to do it via Mouseover.
    SS in execute is the MOST dmg boost u have as a warlock, UA is needed to refresh, but if u look, in 30secs, when SS is on cd, u can cast the first UA Agony and so on with SS, than u need to recast 1time without SS, and the next time SS is ready again, this should be no big dmg loss....
    and if u know the boss, and u know that u dont need to multidot, than u easily can take ur SS glyph out for a other glyph, thx to MoP.......^^

    greetz

  13. #3328
    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)
    GOOD NEWS EVERYONE!

    Here are 2 profiles of mine (not 100% but good enough to release)
    they are Aff lock and BM hunter.

    get them at: Nova[Crystal_Tech]_Profiles

    I love feedback!

    Please if someone helped you donate rep to them.

  14. #3329
    SHJordan's Avatar Member
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    GOOD NEWS EVERYONE!

    Here are 2 profiles of mine (not 100% but good enough to release)
    they are Aff lock and BM hunter.

    get them at: Nova[Crystal_Tech]_Profiles

    I love feedback!
    Not working trying to download via pqr.

  15. #3330
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SHJordan View Post
    Not working trying to download via pqr.
    Same, says invalid URL

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