[PQR] CodeMyLife's Profiles menu

Shout-Out

User Tag List

Page 29 of 30 FirstFirst ... 252627282930 LastLast
Results 421 to 435 of 446
  1. #421
    sevennsins's Avatar Member
    Reputation
    3
    Join Date
    Dec 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code are you making a DK pqr/pe profile, im doing HC content at the mo and can give you all the feed back you need

    Aegeus said to ask you seen as you dont have flys ;p
    Last edited by sevennsins; 12-30-2013 at 01:37 PM. Reason: Aegeus told me to name drop

    [PQR] CodeMyLife's Profiles
  2. #422
    fddbzz's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jan 2013
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Enuma View Post
    Edit2: Interrupts fixed!

    Go to functions find and select everything, including from CML_Interrupts = nil down to this line, excluding xrn:message("\124cFF9E6720...CodeMyLife Warrior..."). Basically your switching whole interrupt code with this one posted, implemented both Pummel and Disrupting Shout.

    Code:
    CML_Interrupts = nil
    	function CML_Interrupts()
    		-- Credit goes to Xelper for his interupt code. Thank you very much Xelper!!
    	
    		
    		if not PummelCheck then 
    			return false 
    		end
    		
    			if RandomPummel == nil then
    			if Pummel == 1 then RandomPummel = math.random(0,50) end
    			if Pummel == 2 then RandomPummel = 30 end
    			if Pummel == 3 then RandomPummel = 0 end
    		end
    		
    		function PQR_InterruptSpell()
    			if IsPlayerSpell(6552) and PQR_SpellAvailable(6552) then --Pummel
    				return 6552
    			elseif IsPlayerSpell(102060) and PQR_SpellAvailable(102060) then -- Disrupting Shout
    				return 102060
    			else
    				return 0
    			end    
    		end   
    		
    		local PQR_InterruptPercent = Pummel
    		local interruptSpell = PQR_InterruptSpell()
    		local interruptName = GetSpellInfo(interruptSpell)
    		
    		InterruptTargetsList = { "target", "focus", "mouseover" }
    		-- Interrupt Casts and Channels on Target and Focus.
    		if interruptSpell ~= 0 then
    			for i = 1, #InterruptTargetsList do
    				
    				local customTarget = InterruptTargetsList[i]
    				local castName, _, _, _, castStartTime, castEndTime, _, _, castInterruptable = UnitCastingInfo(customTarget)
    				local channelName, _, _, _, channelStartTime, channelEndTime, _, channelInterruptable = UnitChannelInfo(customTarget)
    					
    				if channelName ~= nil then
    					--target is channeling a spell that is interruptable
    					--load the channel variables into the cast variables to make logic a little easier.
    					castName = channelName
    					castStartTime = channelStartTime
    					castEndTime = channelEndTime
    					castInterruptable = channelInterruptable
    					PQR_InterruptPercent = 0
    					local IsChannel = true
    				end
    				
    				--This is actually "Not Interruptable"... so lets swap it around to use in the positive.
    				if castInterruptable == false then
    					castInterruptable = true
    				else
    					castInterruptable = false
    				end	
    				
    				if castInterruptable then
    				  	local timeSinceStart = (GetTime() * 1000 - castStartTime) / 1000
    					local timeLeft = ((GetTime() * 1000 - castEndTime) * -1) / 1000
    					local castTime = castEndTime - castStartTime
    					local currentPercent = timeSinceStart / castTime * 100000
    				  	if IsSpellInRange(GetSpellInfo(23881), customTarget) ~= nil
    				  	  and ( currentPercent > PQR_InterruptPercent or interruptSpell ~= 6552 )
    				  	  and UnitCanAttack("player", customTarget) ~= nil then
    					--target is casting something that is interruptable.
    					--the following 2 variables are named logically... value is in seconds.
    						if InteruptTimer == nil 
    						  or InteruptTimer <= GetTime() - 1.25 then
    						  	if currentPercent < RandomPummel and not IsChannel then return false end
    							CastSpellByID(interruptSpell, customTarget)
    							InteruptTimer = GetTime()
    						end		
    					end
    				end
    			end
    		end
    	end
    i tried used the code above, the pummel interrupt still doesn't seems to work for me.
    btw i have disrupting shout talent
    Last edited by fddbzz; 12-31-2013 at 08:12 AM.

  3. #423
    eneme01's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    absolutely love the warrior profile i used it to help lvl faster bout halfway thru (60-90) n worked
    great. could use better execute logic or an auto stopcast and recast for it to be top priority so it doesnt try to mortal strike or slam for a finisher cuz they just dont secure that kill like execute. also been using it in pvp and i wreck ppl. still a fresh 90 below ilvl 500 on the war but with this profile he tears it upp!! please keep the updates rolling, i know not everyone appreciates it the same way with most modding communities being free based but you do got ur real fans out there bruh bruh

  4. #424
    Aegeus's Avatar Contributor Walter White CoreCoins Purchaser
    Reputation
    134
    Join Date
    Feb 2012
    Posts
    245
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sevennsins View Post
    Code are you making a DK pqr/pe profile, im doing HC content at the mo and can give you all the feed back you need

    Aegeus said to ask you seen as you dont have flys ;p
    You need to check out his thread on the PE forum, exciting things happening!


    “If you don’t know who I am, then maybe your best course would be to tread lightly.” - Walter White

  5. #425
    aeonz's Avatar Master Sergeant
    Reputation
    19
    Join Date
    Nov 2010
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How can I make this compatible for a new starting hunter if possible? I'm a lvl 11 Survival Hunter and doesn't seem to work at all...
    Last edited by aeonz; 01-01-2014 at 06:56 PM.

  6. #426
    Staub's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    3
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello first of sorry for my poor english

    i really like your profile, but is it just me(because of my latency) or the profile really spams alot the spells(keeps trying to use spells) and for some reason the abilitys only goes off after a half a second of the global cooldown has turn, it doesnt do that with some others profiles i have tested for other classes

    btw im using the pally and warrior one
    Last edited by Staub; 01-01-2014 at 06:20 PM.

  7. #427
    Ketrel's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm having two issues with Retribution.

    - Frequently execution sentence queuing will say queued and then never go off, and once this happens, it will not get cast at all by PQR.
    - The Divine Storm proc from the 4pc doesn't get used and just sits there and expires.

    In both cases, this happens most often in actual combat and less often on target dummys.

  8. #428
    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)

    [PQR] CodeMyLife's Profiles

    I have DK 3 specs on PE. Warrior prot arms, ele sham, moonkin,hunter etc... PE > PQR
    Last edited by CodeMyLife; 01-02-2014 at 03:50 PM.
    Soapbox Rotations Developer

  9. #429
    Ketrel's Avatar Member
    Reputation
    1
    Join Date
    Nov 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do you have a retribution profile for that?

  10. #430
    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 Ketrel View Post
    Do you have a retribution profile for that?
    Yeah obviously


    Envoyé de mon iPhone à l'aide de Tapatalk
    Soapbox Rotations Developer

  11. #431
    horseyshane's Avatar Member
    Reputation
    1
    Join Date
    Jul 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    edited /10 chars
    Last edited by horseyshane; 01-22-2014 at 03:24 PM.

  12. #432
    PapaZol's Avatar Member
    Reputation
    1
    Join Date
    Dec 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how to disable the use of talent? Dragon Roar want to use manually.
    Last edited by PapaZol; 01-14-2014 at 05:32 AM.

  13. #433
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    nvm. works. gg
    Last edited by lostinthewoodslol; 01-14-2014 at 10:35 PM.

  14. #434
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    nvm, again, figured it out lol

    still +rep and 5k coins, ty
    Last edited by lostinthewoodslol; 01-14-2014 at 10:54 PM.

  15. #435
    SheepReaper's Avatar Private
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @CodeMyLife

    You've brought a Lurker out of hiding. I have never been a hardcore WoW addict, so I've always found it tedious and almost stressful to decide on a rotation and then staying focused enough to execute it. I know it may not seem like a huge deal, but you've put the 'casual' back into my gaming. Games should never stress you out. I find myself wanting to play now. I used to be so against WoW that I would never even consider paying Blizz my $15 just to play a game with my friends that only causes me stress. I used to only play private servers. I'm 24, have a son, am married, mortgage, bills, etc... It's nice to have something to look forward to when I get home. I'm totally not exaggerating. From the bottom of my heart, Thank you. Please PM me so that I may send you a beer. It's not fair that I should gain so much but Blizz still harvest their monthly blood payment.

Page 29 of 30 FirstFirst ... 252627282930 LastLast

Similar Threads

  1. [PQR] Nova Team Profiles
    By bu_ba_911 in forum WoW Bot Maps And Profiles
    Replies: 2341
    Last Post: 07-02-2018, 03:56 AM
  2. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 09:15 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