PQR - Rotation Bot menu

User Tag List

Page 353 of 779 FirstFirst ... 253303349350351352353354355356357403453 ... LastLast
Results 5,281 to 5,295 of 11681
  1. #5281
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Decaed View Post
    + rep for whoever can help me with this.

    I'm trying to get Frost Strike to not cast if Killing Machine is up and if Obliterate will be up in < 1s (death, frost or unholy rune) but I'm not sure if I have done this right. It doesn't seem to want to work. I'm still new to writing profiles

    PHP Code:
    local KM UnitBuffID("player",51128)
    local RuneCheck RuneCheck

       
    if KM ~= nil then
       
    if select(1,RuneCheck()) < 1 then
       
    if select(3,RuneCheck()) < 1 then
       
    if select(2,RuneCheck()) < 1 then
          
    return false
      
    else
       if 
    UnitPower("player") > 20 then
          CastSpellByName
    (GetSpellInfo(49143),nil)
          return 
    true
       end
    end
    end
    end 
    Since your using that function, you don't need to do <1. The function already checks when you make a request if that specific rune set is less then one second from coming off CD. So you would just do >= 1.

    PQR - Rotation Bot
  2. #5282
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know if there is any priest holy/disc profiles out?

  3. #5283
    Decaed's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    134
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, Kink. + rep

  4. #5284
    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 Kinkeh View Post
    Since your using that function, you don't need to do <1. The function already checks when you make a request if that specific rune set is less then one second from coming off CD. So you would just do >= 1.
    Also, it looks like he's missing an "end". I think .........

  5. #5285
    whirle's Avatar Corporal
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any way to get this to work with 64-bit clients?

  6. #5286
    lantus's Avatar Active Member
    Reputation
    46
    Join Date
    Feb 2012
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by whirle View Post
    Is there any way to get this to work with 64-bit clients?
    I believe the answer is no. Think this has been asked many times already.

  7. #5287
    avenora's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Ty Xelper

    Wanted to say thanks for an awesome Ret profile.
    But I have some issues with it.


    First - it doesn't cast Execution Sentence on Raid training dummy, and bosses in 5-man dungeons including the Headless Horseman.
    Haven't tried it in raids yet.
    I read the code for ES, tried to understand the conditions, tried to change some "false's" to "true's" but it didn't help. I'm too stupid to figure it out by myself I guess >_>.


    Second - it doesn't ALWAYS cast Sacred Shield in pauses between strikes. More often then not my character will just swing with autoattack and wait for other abilities to pop.


    Third - it doesn't cast Judgement while not in melee range. It does cast Exorcism, but not Judgement. Weird :confused:


    Ty for your time and a great profile, afterall.

  8. #5288
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnrealEck View Post
    Anyone know how to make a feral druid profile skull bash a focus target whenever it's casting and cyclone it when predator's swiftness procs?
    You can take some code from my old WOTLK pvp druid feral profile.
    Once i reach lvl 90 on my druid i will update the code to Pandarean, but atm not playing druid.

    DOWNLOAD: Feral_DRUID_Profile.rar
    Stay Safe, Zero Latency, Play the Game!

  9. #5289
    Sovietbobcat's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ello Kickmydog,

    I have noticed an issue with your BM hunter profile could be in the other specs also.. Did not notice it in the older versions of the profile, unsure if you tweaked it or not.

    When you are on the run and moving and attacking your Aspect of the Iron Hawk and Aspect of the Fox keep switching.

  10. #5290
    surfman's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Sheuron ....

    Originally Posted by sheuron View Post
    Just testing it now.

    InteractUnit("Silverleaf") crash game, i guess crash trying to interact with any herb.

    Anyone using lua unlocker can try /run InteractUnit("Silverleaf") or any other herb to check is game crash is related to PQR or game.

    Edit:

    InteractUnit("eioqwoqweyio") -- Dont crash game
    InteractUnit("Silverleaf") -- Dont crash game if silverleaf node is near you
    InteractUnit("Silverleaf") -- Crash game if none silverleaf node is near

    Did you work out why its crashing the game ??

  11. #5291
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    I am currently doing an PvE Affliction profile that are aimed to top HM 25 raids and dominate Arena as much as it could. Therefore i am reaching out to the community for excellent coders and theorycrafters. First it will be Affliction but i am planning to grow further as soon as the profile framework is in place. I have already a foundation but it will need to be reshaped to meet the aims for the profile.

    However the profile will not be released to the public but will only be available for people that have contributed to the making of the profiles.

    If you feel that you can help out pls pm me and we discuss how we could proceed.

    So LFM
    Profile Coder
    Help out with creating the framework. Polishing up the current one and extending it.

    Profile Theorycrafter/Tester
    At the moment it is more sophisticated then SimCraft but i think there is alot more potential. Specially in terms of Boss handling. At the moment i am looking for PvE and PvP people.
    Looking for exploiters and botters to Elder Scrolls Online.

  12. #5292
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gabbz View Post
    Hi,

    I am currently doing an PvE Affliction profile that are aimed to top HM 25 raids and dominate Arena as much as it could. Therefore i am reaching out to the community for excellent coders and theorycrafters. First it will be Affliction but i am planning to grow further as soon as the profile framework is in place. I have already a foundation but it will need to be reshaped to meet the aims for the profile.

    However the profile will not be released to the public but will only be available for people that have contributed to the making of the profiles.

    If you feel that you can help out pls pm me and we discuss how we could proceed.

    So LFM
    Profile Coder
    Help out with creating the framework. Polishing up the current one and extending it.

    Profile Theorycrafter/Tester
    At the moment it is more sophisticated then SimCraft but i think there is alot more potential. Specially in terms of Boss handling. At the moment i am looking for PvE and PvP people.
    I'd love to help out but I'm not very good at coding at all. I only have a basic understanding. Most I do is just tweak others and add some small things, like Dark Succor to Kinkeh's DK profile. However I'm more than willing to test it out for you and give feedback. I have an 85 warlock I've been thinking about getting to 90. Up to you!

  13. #5293
    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 Sovietbobcat View Post
    Ello Kickmydog,

    I have noticed an issue with your BM hunter profile could be in the other specs also.. Did not notice it in the older versions of the profile, unsure if you tweaked it or not.

    When you are on the run and moving and attacking your Aspect of the Iron Hawk and Aspect of the Fox keep switching.
    update to the latest version, this should have been fixed about 13 revisions ago
    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

  14. #5294
    UnrealEck's Avatar Active Member
    Reputation
    17
    Join Date
    May 2006
    Posts
    112
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    You can take some code from my old WOTLK pvp druid feral profile.
    Once i reach lvl 90 on my druid i will update the code to Pandarean, but atm not playing druid.

    DOWNLOAD: Feral_DRUID_Profile.rar
    Thanks I'll give it a try but I'm not very proficient with coding.

  15. #5295
    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)
    Question to the comment below... For his locals he has the one local RuneCheck = RuneCheck
    What does that do really? I'm just wondering to help further develop my skill in the coding, as to I've never really seen something like that, or really noticed...

    Originally Posted by Decaed View Post
    + rep for whoever can help me with this.

    I'm trying to get Frost Strike to not cast if Killing Machine is up and if Obliterate will be up in < 1s (death, frost or unholy rune) but I'm not sure if I have done this right. It doesn't seem to want to work. I'm still new to writing profiles

    PHP Code:
    local KM UnitBuffID("player",51128)
    local RuneCheck RuneCheck

       
    if KM ~= nil then
       
    if select(1,RuneCheck()) < 1 then
       
    if select(3,RuneCheck()) < 1 then
       
    if select(2,RuneCheck()) < 1 then
          
    return false
      
    else
       if 
    UnitPower("player") > 20 then
          CastSpellByName
    (GetSpellInfo(49143),nil)
          return 
    true
       end
    end
    end
    end 

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 10:59 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