PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 82 of 779 FirstFirst ... 32787980818283848586132182582 ... LastLast
Results 1,216 to 1,230 of 11681
  1. #1216
    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 firepong View Post
    Maybe someone can shed some light on this little piece of code:
    Code:
    local hasTarget = UnitExists("Target")
    local isDead = UnitIsDead("Target")
    
    if hasTarget and not isDead then
    	for i=1,40 do
    		local name,rank,icon,count,debuffType, duration, expirationTime,unitCaster,isStealable,shouldConsolidate,spellId = UnitBuff("Player",i)
    		local direction = GetEclipseDirection()
    
    		if name == "Eclipse (Solar)" or direction == "moon" or direction == "none" then
    			CastSpellByName(tostring(GetSpellInfo(5176)))
    		elseif name == "Eclipse (Lunar)" or direction == "sun" then
    			CastSpellByName(tostring(GetSpellInfo(2912)))
    		end
    	end
    end
    It works good and all, but for some reason, it want's to cancel a cast half way through and wants to start over. And when I make into a function and call the function for either Lunar or Solar state, it just returns 1 stat and never refreshes when you get to a new state, for example going from Solar > none > Lunar. It will always report Solar, never changing.

    I'm passing stuff to it when it's a function, but it still does not want to refresh.

    For the above code, the best way I can say to see what it's doing is to make a new ability and rotation and just copy and paste the code in and watch what it's doing. If this can get fixed, it would be the BEST way to do Wrath/Starfire for Balance Druid's IMO.
    Ok, to add to this post.

    For some reason, lets say Starfire is casting and it tries to cast Starsurge while its casting, it will half the time cancel the spell and start all over. Is it a bug with the current PQR or just my WoW install screwing up. Real weird, only does it on Balance druid spec. I know theirs bugs with Balance druids, so maybe it's a server side problem for the class?

    PQR - Rotation Bot
  2. #1217
    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)
    Ok guys, I've finally made up my mind on Making a PQRotation version of Balance DPS for leveling. And the verdict is: NOT GOING TO HAPPEN!

    Reason for this is, just in the 15-20 level bracket, I have died over 20 times alone in the same spot, because the rotation runs out of mana. I go and change specs to feral, start up my rotation and let HB do the rest. Finish it in 1 shot, never falling below 50% hp WITH 5 MOBS ON ME.

    Before I go into the navy, I will try and perfect my Feral profile so it will stick and work till at least Mists comes out for levelers. So get that leveling done before the next expansion comes out and I'm not around to fix/repair the bugs that will come with new SpellID's and the like.

    The stuff I will mostly be working on is Getting level 85 rotations setup for Balance (This I will do as I already have a semi-decent Balance profile coded), getting the rest of the Level 85 Feral DPS rotation coded in, and if Sheuron will let me, I'll just link to his rotation for healing reasons. I will also get level 1-10 DPS setup to where you can use the profile all the way through from 1-85. Right now, it is from 10-85, with half of the feral DPS coded in since I did that while coding in some of the later spells you learn.

    P.S. Again, it's sad how Balance is shitty when leveling from 1-85. The mana regen for lower levels is still not there enough to physically/remotely consider using that spec to level.
    Last edited by firepong; 07-01-2012 at 10:50 PM.

  3. #1218
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Maybe someone can shed some light on this little piece of code:
    Code:
    local hasTarget = UnitExists("Target")
    local isDead = UnitIsDead("Target")
    
    if hasTarget and not isDead then
    	for i=1,40 do
    		local name,rank,icon,count,debuffType, duration, expirationTime,unitCaster,isStealable,shouldConsolidate,spellId = UnitBuff("Player",i)
    		local direction = GetEclipseDirection()
    
    		if name == "Eclipse (Solar)" or direction == "moon" or direction == "none" then
    			CastSpellByName(tostring(GetSpellInfo(5176)))
    		elseif name == "Eclipse (Lunar)" or direction == "sun" then
    			CastSpellByName(tostring(GetSpellInfo(2912)))
    		end
    	end
    end
    It works good and all, but for some reason, it want's to cancel a cast half way through and wants to start over. And when I make into a function and call the function for either Lunar or Solar state, it just returns 1 stat and never refreshes when you get to a new state, for example going from Solar > none > Lunar. It will always report Solar, never changing.

    I'm passing stuff to it when it's a function, but it still does not want to refresh.

    For the above code, the best way I can say to see what it's doing is to make a new ability and rotation and just copy and paste the code in and watch what it's doing. If this can get fixed, it would be the BEST way to do Wrath/Starfire for Balance Druid's IMO.
    Reset the state, is there a direction none? Can you include more code.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  4. #1219
    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 averykey View Post
    Reset the state, is there a direction none? Can you include more code.
    That's all there is to it for my Wrath/Starfire code. Wanted to make it as simple as possible. And there is a none direction. When you first start out DPS and there is no current direction for the bar, GetEclipseDirection() reports "none". And to get DPS started off quick, I put it up there Wrath instead of the long ass cast time of Starfire.

    But anyways, I pretty much scratched that and just went with:
    Code:
    		if direction == "moon" or direction == "none" then
    			CastSpellByName(tostring(GetSpellInfo(5176)))
    		elseif direction == "sun" then
    			CastSpellByName(tostring(GetSpellInfo(2912)))
    		end
    So far, the above has worked good enough. Haven't had any problems out of it from what I tested on my short time of trying to level with Balance. I know at one time or another, it was reporting the wrong shit half of the time with the above API code. Guess Blizzard fixed it since it's doing pretty good.

    UPDATE:

    Version 1.0.2.0 of my HonorBuddy profile is out. Just updated the PQRotation portion of the code for levels 1-10, added in Ferocious Bite (coulda swore I already had it coded in :confused: lol) from the level you learn it all the way up to level 85 and for the raiding profile. 80% of the level 85 raiding rotation is coded in. Tomorrow, I'm going to give it a whirl and see how it does in lazy raider with HonorBuddy handling all mangle/Shred in LFR. If it handles it great, I'll leave it at that. If it does not, I will modify the HonorBuddy CC to not do anything if the player is 85 and let PQRotation handle the raiding profile 100% at 85.

    Other small minor fixes. Other than that, everything was explained in this post and my earlier posts.

    Just update the PQRotation profile though the Rotation Editor.

  5. #1220
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    That's all there is to it for my Wrath/Starfire code. Wanted to make it as simple as possible. And there is a none direction. When you first start out DPS and there is no current direction for the bar, GetEclipseDirection() reports "none". And to get DPS started off quick, I put it up there Wrath instead of the long ass cast time of Starfire.

    But anyways, I pretty much scratched that and just went with:
    Code:
    		if direction == "moon" or direction == "none" then
    			CastSpellByName(tostring(GetSpellInfo(5176)))
    		elseif direction == "sun" then
    			CastSpellByName(tostring(GetSpellInfo(2912)))
    		end
    So far, the above has worked good enough. Haven't had any problems out of it from what I tested on my short time of trying to level with Balance. I know at one time or another, it was reporting the wrong shit half of the time with the above API code. Guess Blizzard fixed it since it's doing pretty good.

    UPDATE:

    Version 1.0.2.0 of my HonorBuddy profile is out. Just updated the PQRotation portion of the code for levels 1-10, added in Ferocious Bite (coulda swore I already had it coded in :confused: lol) from the level you learn it all the way up to level 85 and for the raiding profile. 80% of the level 85 raiding rotation is coded in. Tomorrow, I'm going to give it a whirl and see how it does in lazy raider with HonorBuddy handling all mangle/Shred in LFR. If it handles it great, I'll leave it at that. If it does not, I will modify the HonorBuddy CC to not do anything if the player is 85 and let PQRotation handle the raiding profile 100% at 85.

    Other small minor fixes. Other than that, everything was explained in this post and my earlier posts.

    Just update the PQRotation profile though the Rotation Editor.
    Where does geteclipsedirection come from? did you make it? or is it in the api?
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #1221
    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 averykey View Post
    Where does geteclipsedirection come from? did you make it? or is it in the api?
    Its part of the API. I would look through all of Blizzards code and see how they come up with that specific function, but why bother when it's working fine now.

  7. #1222
    Addikt's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Guys and Gals,

    Awesome work with all the continual work with these profiles, does anyone recomend a good Frost PVP profile for Death Knight? because im searching the forums and cant find anything >.>

  8. #1223
    lolomo2003's Avatar Active Member
    Reputation
    49
    Join Date
    Apr 2012
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OnionsTich View Post
    Sheuron's Resto shaman profile is amazing. Do you plan on making Mists profiles? Please don't stop! If you got BETA profiles please post! And will your current profiles work on Mists BETA? IS THERE ANY WAY TO MAKE IT WORK ON BETA?
    Agree with you m8. Most of Sheurons profiles are great. Rogue, Druid Tank, Shaman (I didn't try others but this are amazing). Keep it up with your profiles and THANK YOU SHEURON

  9. #1224
    OnionsTich's Avatar Banned
    Reputation
    0
    Join Date
    Jul 2012
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sheuron's Resto shaman profile is amazing. Do you plan on making Mists profiles? Please don't stop! If you got BETA profiles please post! And will your current profiles work on Mists BETA? IS THERE ANY WAY TO MAKE IT WORK ON BETA?

  10. #1225
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OnionsTich View Post
    Sheuron's Resto shaman profile is amazing. Do you plan on making Mists profiles? Please don't stop! If you got BETA profiles please post! And will your current profiles work on Mists BETA? IS THERE ANY WAY TO MAKE IT WORK ON BETA?
    beta is beta and not live so why waste time perfecting a profile if it might need major changes from patch to patch. take the time to learn the class and test the game for bugs and such. when numbers and rotations are set you'll start seeing more mists profiles.

    Please if someone helped you donate rep to them.

  11. #1226
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OnionsTich View Post
    Sheuron's Resto shaman profile is amazing. Do you plan on making Mists profiles? Please don't stop! If you got BETA profiles please post! And will your current profiles work on Mists BETA? IS THERE ANY WAY TO MAKE IT WORK ON BETA?
    1. yes
    2. no
    3. yes, but i ll not waste time testing profiles on beta.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  12. #1227
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It is pointless to update profiles for beta right now, maybe in the week or two before release. Class changes will occur, and its pointless having to do the work twice. I released the beta offsets mainly for the profile developers that want to get a headstart really. (And myself, I hate leveling )

  13. #1228
    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)
    I'm not dead! I've just been sick.
    Shadowpriest profile should be updated tonight/tomorrow. I've got a ton of cleaning to do at home though, first. :x

  14. #1229
    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
    I'm not dead! I've just been sick.
    Shadowpriest profile should be updated tonight/tomorrow. I've got a ton of cleaning to do at home though, first. :x
    Take your time (:

  15. #1230
    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)
    What profile do you guys suggest for LFR or normal DS for Resto Druid?

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 08:15 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