[PQR Profile] CodeMyLife MoP Hunter BeastMaster/Survival Rotation. menu

Shout-Out

User Tag List

Page 7 of 11 FirstFirst ... 34567891011 LastLast
Results 91 to 105 of 165
  1. #91
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DEFLAMA View Post
    I see, Ill do some more testing with it in tonights raid watching this specifically. I've been messing around on Training Dummy testing ranges with 2 dummies far apart from each other and found that the rotation stops with your current code until pet starts moving towards the next target and gets in range. Gonna mess around with a bit of code to see if i can find a fix.

    Edit:
    Looking deeper I see why everything else stops, I think its because most of the abilities have:


    so while the pet is not in range to kill command but kill command is ready, they all return false thus not firing.
    True that, try modding the GetKC() function by adding the same range check as in Kill Command. It's in the -- Functions ability.
    Soapbox Rotations Developer

    [PQR Profile] CodeMyLife MoP Hunter BeastMaster/Survival Rotation.
  2. #92
    DEFLAMA's Avatar Member
    Reputation
    24
    Join Date
    Sep 2012
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: nvm i broke it LOL, back to the drawing board

    If I put the range check into the GetKC() function it seems to do the same thing it did without it as I think when calling that function from shots (cobra, arcane) etc it is trying to use that range check for the shots itself (when KC is ready and pet is not near to use KC) and so it still does not fire. I just cant seem to wrap my head around this lol.

    Is there a "pet in range of target" function in LUA? If there was it would be as simple as putting that in the GetKC() function (i think), however ive not seen one mentioned anywhere so i dont think there is >.<
    Last edited by DEFLAMA; 07-11-2013 at 01:00 PM.

  3. #93
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DEFLAMA View Post
    Edit: nvm i broke it LOL, back to the drawing board

    If I put the range check into the GetKC() function it seems to do the same thing it did without it as I think when calling that function from shots (cobra, arcane) etc it is trying to use that range check for the shots itself (when KC is ready and pet is not near to use KC) and so it still does not fire. I just cant seem to wrap my head around this lol.

    Is there a "pet in range of target" function in LUA? If there was it would be as simple as putting that in the GetKC() function (i think), however ive not seen one mentioned anywhere so i dont think there is >.<
    I'm at home now, will give it a try, I guess you did not /console reloadui so the function did not update :P

    Edit 2 : That's what i have in mind

    Code:
    	GetKC = nil
    	function GetKC()
    		if GetSpecialization() == 1 
    		  and ( HaveBuff("player", 19574, 2) and GetSpellCD(34026) < 0.1 ) 
    		  or ( not HaveBuff("player", 19574) and GetSpellCD(34026) < 0.2 ) 
    		  and IsSpellInRange(GetSpellInfo(34026), "target") == 1 then 
    			return true
    		else
    			return false
    		end
    	end
    Edit 3 : not working as is, will think about another strategy and keep you informed.

    Edit 4 : I think I smoke too much, was trying it with the Survival only setup, that explain a bit why it was not working. It does work as expected. Will be in update 1.10. Thanks a lot for pointing this out DEFLAMA!
    Last edited by CodeMyLife; 07-11-2013 at 04:22 PM.
    Soapbox Rotations Developer

  4. #94
    DEFLAMA's Avatar Member
    Reputation
    24
    Join Date
    Sep 2012
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CodeMyLife View Post
    I'm at home now, will give it a try, I guess you did not /console reloadui so the function did not update :P

    Edit 2 : That's what i have in mind

    Code:
    	GetKC = nil
    	function GetKC()
    		if GetSpecialization() == 1 
    		  and ( HaveBuff("player", 19574, 2) and GetSpellCD(34026) < 0.1 ) 
    		  or ( not HaveBuff("player", 19574) and GetSpellCD(34026) < 0.2 ) 
    		  and IsSpellInRange(GetSpellInfo(34026), "target") == 1 then 
    			return true
    		else
    			return false
    		end
    	end
    Edit 3 : not working as is, will think about another strategy and keep you informed.

    Edit 4 : I think I smoke too much, was trying it with the Survival only setup, that explain a bit why it was not working. It does work as expected. Will be in update 1.10. Thanks a lot for pointing this out DEFLAMA!
    Awesome im a complete noob when it comes to coding so probably why i was failing at it lol

  5. #95
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know which profile to use when using these lol. I try the BM only one for BM then for Surv I use BM / Surv. Is that correct?

  6. #96
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by expunge View Post
    I don't know which profile to use when using these lol. I try the BM only one for BM then for Surv I use BM / Surv. Is that correct?
    BM/Surv is a multi-spec Beastmaster and Survival.
    Beastmaster is BM only.
    Survival is Surv only.

    I use BM/Surv usually, the less often I press alt-x the happierI am(yeah I know I'm lazy...) but you can use separate ones if you want.
    Soapbox Rotations Developer

  7. #97
    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)
    Hey Code,

    First just want to say keep up the good work!! I love your pally rotation and I will be using your hunter one soon and I'm sure it will be amazing too. Maybe some other tank love as well? DK maybe? :P

    I have one quick question. For your PokeRotation interrupt profile, I was wondering what pets you would recommend/you were using for the masters? This is the only place you posted about it so I thought I would ask here.

    Thanks! Rep+

  8. #98
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FrostDKsFTW View Post
    Hey Code,

    First just want to say keep up the good work!! I love your pally rotation and I will be using your hunter one soon and I'm sure it will be amazing too. Maybe some other tank love as well? DK maybe? :P

    I have one quick question. For your PokeRotation interrupt profile, I was wondering what pets you would recommend/you were using for the masters? This is the only place you posted about it so I thought I would ask here.

    Thanks! Rep+
    For the masters hard to say. It is not good enough for master at the moment, it's pretty crude. Many habilities are coded and lots are still to code too. Baseline, all the Team Buffs/Debuff cannot be read yet, cant find the damn API entry for those. To level pets, I go with my Kun-Lai Runt as second and a Bear as third pet. Both have Rampage and are killers against Critters. I use the -- 2x Ringers Rotation and then put any other pet in slot 1. This pet will be leveled up very quick. I will probly make a post for PokeRotation sometime soon. It's fun it seems, people that don't like pet battles suddently found it fun with the rotation lol

    Thanks for reporting and good luck on masters!

    P.S. Yeah, more tanky profiles will be released soon enough. Got Prot warrior coming(Ready for testing PM me if you wanna test) . Blood DK is in my plans too and as Feral druid is. Monk, bah not for now but I get all other tanks 85+ so yeah why not!

    Was gonna play golf today, sunny day here. I added my Pokerotation revisions to my SVN before I go, have fun! You can use the Download Updates button in the rotation to update!

    PokeRotation 1.01
    - Added some abilities.
    - Added xrn5 chat overlay support
    - Modified Events Display. Added out of combat time before Heal is ready.
    - Some little tweaks and additions that I forget, did not update for weeks!
    Last edited by CodeMyLife; 07-13-2013 at 09:20 AM.
    Soapbox Rotations Developer

  9. #99
    Blehbot's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    79
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code gonna be a prot fury rotation or straight up prot? I am interested in this. BTW Thanks for the great profile I got stuck in a lfr with a tank that dropped waited 20 min threw on some gear I hobbled together on my ret pally and did great with this.
    Last edited by Blehbot; 07-13-2013 at 09:56 PM.

  10. #100
    leck's Avatar Member
    Reputation
    2
    Join Date
    Jul 2009
    Posts
    27
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @CodeMyLife Any chances you could make an marksman profile ??

    thanks for these nice profiles, awesome work!

  11. #101
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Blehbot View Post
    Code gonna be a prot fury rotation or straight up prot? I am interested in this. BTW Thanks for the great profile I got stuck in a lfr with a tank that dropped waited 20 min threw on some gear I hobbled together on my ret pally and did great with this.
    Protection only for now, Fury later

    Originally Posted by leck View Post
    @CodeMyLife Any chances you could make an marksman profile ??

    thanks for these nice profiles, awesome work!
    If marksman becomes good in dps charts again, surely yes!
    Soapbox Rotations Developer

  12. #102
    mcwhat's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Dec 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Love the profiles. Any chance we can get support for engi gloves added?

  13. #103
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mcwhat View Post
    Love the profiles. Any chance we can get support for engi gloves added?

    It's already with Bestial Wrath. What do you have in mind? Support for survival? if yes, when should we use? on CD? before black arrow? random?
    Soapbox Rotations Developer

  14. #104
    Igloo's Avatar Member
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    20
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you ever get a chance to look at the freezing problem this had?

  15. #105
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Freezing!? Never heard of freezings on this profile!? Had freezing on paly tanking on tortos but that's pretty much it.. Specify a bit more plz.
    Soapbox Rotations Developer

Page 7 of 11 FirstFirst ... 34567891011 LastLast

Similar Threads

  1. Is there any way to convert basic rotations to PQR Profiles?
    By DragonfireEX402 in forum WoW Bots Questions & Requests
    Replies: 5
    Last Post: 03-01-2015, 04:30 PM
  2. [Buying] PQR 4.3.4 Hunter Profile
    By skyzor in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 06-09-2014, 03:46 PM
  3. [PQR Profile] CodeMyLife MoP Paladin Protection/Retribution Rotation.
    By CodeMyLife in forum WoW Bot Maps And Profiles
    Replies: 667
    Last Post: 01-19-2014, 09:28 PM
  4. 5.2 Hunter PQR profiles?
    By LifeIsOP in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 03-21-2013, 03:44 AM
  5. [PQR] Bossqwerty's MOP Mage Profiles
    By Bossqwerty in forum WoW Bot Maps And Profiles
    Replies: 154
    Last Post: 12-29-2012, 04:51 PM
All times are GMT -5. The time now is 07:23 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