PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 31 of 779 FirstFirst ... 27282930313233343581131531 ... LastLast
Results 451 to 465 of 11681
  1. #451
    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 Devilsadvocate View Post
    Thanks. Finally someone that actually knows what their talking about and not another leecher that acts elitist when they repost code from someone else's work that doesn't even help the problem at hand...
    +rep my friend
    Here is the link to the lua api info for wow.
    http://www.wowwiki.com/Lua_functions

    Btw do not flex your epeen here bragging about how much rep you have.

    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

    PQR - Rotation Bot
  2. #452
    Devilsadvocate's Avatar Member
    Reputation
    70
    Join Date
    May 2008
    Posts
    254
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    Here is the link to the lua api info for wow.
    Lua functions - WoWWiki - Your guide to the World of Warcraft

    Btw do not flex your epeen here bragging about how much rep you have.

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    Thanks for the reference but next time leave your snide remark out of it. Also, as a friendly hint, research Death Knight DPS mechanics again and actually pay attention. Seems your terribly misinformed or don't fully understand what your referencing for it.
    I'm not going to be releasing anything for a while. I'm back on retail for new content.

  3. #453
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You're both acting like children imo, take it to PM's or something.

    I like World of Warcraft Programming myself but i'll use wowwiki when it's incomplete/to cross reference.
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  4. #454
    jace5869's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone know of a good Enhancement profile?

    I've tried Blinded's profile and another, but Blinded's profile for both 4pc T13 and non-4pc T13 casts an extra lightning bolt after casting a MW Lightning Bolt. If that makes sense. The other profile (can't remember where I got it exactly) doesn't cast Lightning Bolt at anything but MWx5

  5. #455
    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 onya View Post
    You're both acting like children imo, take it to PM's or something.

    I like World of Warcraft Programming myself but i'll use wowwiki when it's incomplete/to cross reference.
    Thank you, this is exactly what needs to be done. I'm pretty sure I read no flaming/arguing somewhere in the forum rules. If it keeps going on here, I will not be afraid to report anyone that's doing what I just stated. Anyways, back to the constructive feedback and help.

    Originally Posted by js1974 View Post
    Anyone mind a little help here, I've tried everything I can think of and every piece of code I can find but I can not get this to work no matter what I do. These are hte 2 code sets I have attempted neither work both cripple the rotation.

    Code:
    local _,SBomb = GetItemCooldown("Saronite Bomb")
    
    
    -- Saronite Bomb
    if SBomb == 0 and IsLeftControlKeyDown() and GetCurrentKeyBoardFocus()==nil then
    UseItemByName("Saronite Bomb" [, "mouseover"])
    end
    return true end
    I also tried using

    Code:
    -- Check Bomb Cooldown
    local _, Cooldown, Ready = GetItemCooldown("Saronite Bomb")
    
    
    -- Check Cooldown and Combat status
    if Cooldown == 0 and
       Ready == 1 and
       UnitChannelInfo("player") == nil and
       UnitAffectingCombat("player") ~= nil
    then
    
    
      UseItemByName("Saronite Bomb" [, "mouseover"])) 
      return true
    
    
    end
    Neither of these work I know there has to be a way to make them work and I can only assume I'm just making a mistake somewhere but any help would be greatly appreciated.
    Saronite Bomb's have a circle on the ground to show where your planting it right, like Healing Rain or DnD etc? If so, this is the way I would do it. Feel free to use it whenever you want to:

    Code:
    local sbCD = GetItemCooldown(41119) --41119 - ItemID of Saronite Bomb
    local inCombat == UnitAffectingCombat("Player")
    local sbCount = GetItemCount(41119) --Make Sure You Have The Item
    
    if sbCD == 0 and (sbCount and inCombat) ~= nil then
    	UseItemByID(41119)
    	if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
    	return true
    end
    The above code is untested, but should work, I hope. Give it a try and let me know how it goes for you.

    Originally Posted by jace5869 View Post
    Does anyone know of a good Enhancement profile?

    I've tried Blinded's profile and another, but Blinded's profile for both 4pc T13 and non-4pc T13 casts an extra lightning bolt after casting a MW Lightning Bolt. If that makes sense. The other profile (can't remember where I got it exactly) doesn't cast Lightning Bolt at anything but MWx5
    Check the first page about 5 pages down. Since Blinded hasn't been on and updated his profile in a while, I decided to take it over and post my changes I made. Should be pretty decent. I top charts in my raid on my DPS Off-Spec. I've burst up to 54k in 396 gear most times if I pre-pot before boss is pulled.
    Last edited by firepong; 05-18-2012 at 12:07 PM.

  6. #456
    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 jace5869 View Post
    Does anyone know of a good Enhancement profile?

    I've tried Blinded's profile and another, but Blinded's profile for both 4pc T13 and non-4pc T13 casts an extra lightning bolt after casting a MW Lightning Bolt. If that makes sense. The other profile (can't remember where I got it exactly) doesn't cast Lightning Bolt at anything but MWx5
    Also, my version, instead of taking the time to waste maelstrom stacks and cast a 3 or less Lightning Bolt, it costs Lava Burst when EVERYTHING is on CD except for when feral spirit is up. When Feral Spirit is up, it does not cast Lava Burst, but does Lightning bolt at 4 or higher stacks.

    I tried doing Lightning bolt fillers at 3+ stacks, but it was doing less DPS than when I use Lava Burst as a Filler. In my rotation, with Lava Burst as a filler, Lava burst is usually within the top 10 on Damage Done, Usually in the top 7.

    And even though it says to use Fire Shock after a Unleash Weapon use, since the buff from Flametongue only buffs the direct damage of Fire shock, I didn't put this as a major priority. Half the time, when Unleash Elements is done, Fire Shock is on Cooldown, so it actually puts that into Lava Burst, which I've seen crit on my gear up to 45k damage.

    It's best to put the rotation up against a Dummy to get the gist of my changes, but it does the same DPS, if not more as SimulationCraft, which 90% of the rotation is based around. The other 10% is my own DPS increase that I have had more luck with than the other 10% of SimulationCraft.

  7. #457
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Thank you, this is exactly what needs to be done. I'm pretty sure I read no flaming/arguing somewhere in the forum rules. If it keeps going on here, I will not be afraid to report anyone that's doing what I just stated. Anyways, back to the constructive feedback and help.



    Saronite Bomb's have a circle on the ground to show where your planting it right, like Healing Rain or DnD etc? If so, this is the way I would do it. Feel free to use it whenever you want to:

    Code:
    local sbCD = GetItemCooldown(41119) --41119 - ItemID of Saronite Bomb
    local inCombat == UnitAffectingCombat("Player")
    local sbCount = GetItemCount(41119) --Make Sure You Have The Item
    
    if sbCD == 0 and (sbCount and inCombat) ~= nil then
        UseItemByID(41119)
        if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
        return true
    end
    The above code is untested, but should work, I hope. Give it a try and let me know how it goes for you.



    Check the first page about 5 pages down. Since Blinded hasn't been on and updated his profile in a while, I decided to take it over and post my changes I made. Should be pretty decent. I top charts in my raid on my DPS Off-Spec. I've burst up to 54k in 396 gear most times if I pre-pot before boss is pulled.
    Did not work, I've tried everything and just no go. What about making the code so it's used with hitting the right control key and just have it throw the bomb where my mouseover is? The biggest issue is when DPSing you can't just hit it as the target window appears and then instantly vanishes so I need it to just throw it at the mouseover location. I certainly don't mind making it bound to a key I just need it's ability to be activated and thrown. However thank you very much for the attempt to resolve the issue.

    +rep for that!

  8. #458
    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 js1974 View Post
    Did not work, I've tried everything and just no go. What about making the code so it's used with hitting the right control key and just have it throw the bomb where my mouseover is? The biggest issue is when DPSing you can't just hit it as the target window appears and then instantly vanishes so I need it to just throw it at the mouseover location. I certainly don't mind making it bound to a key I just need it's ability to be activated and thrown. However thank you very much for the attempt to resolve the issue.

    +rep for that!
    Sorry about that, I was using the wrong item use code. Try this one out:
    Code:
    if IsLeftControlKeyDown() then
        UseItemByName(41119)
        if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end
        return true
    end
    I was using UseItemByID when it was suppose to be UseItemByName(itemID)
    Last edited by firepong; 05-18-2012 at 01:44 PM.

  9. #459
    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 Devilsadvocate View Post
    Thanks. Finally someone that actually knows what their talking about and not another leecher that acts elitist when they repost code from someone else's work that doesn't even help the problem at hand...
    +rep my friend
    Originally Posted by Devilsadvocate View Post
    Actually no, Im completely building my own profile but referencing others since there is no real useful reference guide for this program....
    My Rep on this site is 68 for a reason my friend....
    I was trying to help(I said work off that, for a reason. And not to expect someone to just give you the whole code..you have to learn some how)...I haven't been on this forum for as long as you, I didn't even know nor do I care now about a rep system, I'll rep stuff I'm grateful for now though =]. Good luck with your profile, I'll check it out when you release it.
    Last edited by Kinkeh; 05-18-2012 at 05:47 PM.

  10. #460
    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 Kinkeh View Post
    I was trying to help(I said work off that, for a reason. And not to expect someone to just give you the whole code..you have to learn some how)...I haven't been on this forum for as long as you, I didn't even know nor do I care now about a rep system, I'll rep stuff I'm grateful for now though =]. Good luck with your profile, I'll check it out when you release it.
    yea i was trying to defend you imo... I am also looking forward to his work also. I like to learn from others hopefully he will be able to accomplish what he says he wants to. I want to see how nice my dps can get even though I have all top 75 parses in all HM fights with both of my frost and unholy profiles. Guess that makes me a top 100 dk in the world if he can make it top 25 awesome stuff.
    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

  11. #461
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There. Updated the Nova Unholy profile before bed. Added in a aoe rotation (courtesy of Kinkeh) and a few changes pointed out my Pants. =)
    Also cleaned up the code a bit, temporarily disabled the Notification frame messages and fine tuned some abilities. Should have Dark Simulacrum in a few days if nothing else. :P

  12. #462
    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 mentally View Post
    There. Updated the Nova Unholy profile before bed. Added in a aoe rotation (courtesy of Kinkeh) and a few changes pointed out my Pants. =)
    Also cleaned up the code a bit, temporarily disabled the Notification frame messages and fine tuned some abilities. Should have Dark Simulacrum in a few days if nothing else. :P
    Yay, going to check it out. =] thankz you.

  13. #463
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    There. Updated the Nova Unholy profile before bed. Added in a aoe rotation (courtesy of Kinkeh) and a few changes pointed out my Pants. =)
    Also cleaned up the code a bit, temporarily disabled the Notification frame messages and fine tuned some abilities. Should have Dark Simulacrum in a few days if nothing else. :P
    Woo! thanks for the update!

  14. #464
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    There. Updated the Nova Unholy profile before bed. Added in a aoe rotation (courtesy of Kinkeh) and a few changes pointed out my Pants. =)
    Also cleaned up the code a bit, temporarily disabled the Notification frame messages and fine tuned some abilities. Should have Dark Simulacrum in a few days if nothing else. :P
    Are they listed as Bubba now, I tried updating from PQR and also from the SVN and got different files. I see some Unholy Bubba DK now with an AOE and PVP rotation. But not sure if those are yours or separate.

    Thanks
    Last edited by abndrew82; 05-18-2012 at 08:00 PM.

  15. #465
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    Are they listed as Bubba now, I tried updating from PQR and also from the SVN and got different files. I see some Unholy Bubba DK now with an AOE and PVP rotation. But not sure if those are yours or separate.

    Thanks
    The one from the SVN doesn't have PvP and seems to be the correct version (I am assuming).
    Last edited by xLegendx; 05-18-2012 at 08:18 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 06:48 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