Kickmydog BM/MM/SV Hunter Profiles. menu

Shout-Out

User Tag List

Page 7 of 21 FirstFirst ... 34567891011 ... LastLast
Results 91 to 105 of 306
  1. #91
    goldio's Avatar Member
    Reputation
    3
    Join Date
    May 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    First, thanks a lot 4 your update.
    All your previous profiles are awesome and let me compete with the top dds in our raid.
    Cheers

    ++rep

    Kickmydog BM/MM/SV Hunter Profiles.
  2. #92
    idonotbot's Avatar Corporal
    Reputation
    8
    Join Date
    Jan 2013
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Absolutely love your profiles KMD, keep my hunter looking great, but I do have one little request. Would it be possible to include /cast Berserking in the CDs along with the orc racial. I hate having to do all the edits everytime you update and am probably missing some.

  3. #93
    K-Z's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone can help me, how i can remove the auto-used of the trinkets? , plz any help?

  4. #94
    Tamrael's Avatar Member
    Reputation
    4
    Join Date
    Jun 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I have been considering it, but honestly I looked at the code for Nova Frame and I don't have to time to delve into it in any great detail.

    But I definitely like the idea of using the /commands to toggle abilities.
    Code:
    --------------------
    -- Slash Commands --
    --------------------
    
    if SlashMacros == nil then
    	SlashMacros = true
    
    	RegisterCVar("Tamrael_ActiveCD", 0)
    
    	SLASH_ACTIVECOOLDOWNS1 = "/activecooldowns"
    	SLASH_ACTIVECOOLDOWNS2 = "/activecooldown"
    	function SlashCmdList.ACTIVECOOLDOWNS(msg, editbox)
    		if not GetCVarBool("Tamrael_ActiveCD") then
    			xrn:message("|cff9933ffCooldowns - Active.")
    			SetCVar("Tamrael_ActiveCD", 1)
    		else
    			xrn:message("|cff9933ffCooldowns - Inactive.")
    			SetCVar("Tamrael_ActiveCD", 0)
    		end
    	end
    
    	RegisterCVar("Tamrael_AOE_Toggle", 0)
    
    	SLASH_AOE1 = "/aoe"
    	function SlashCmdList.AOE(msg, editbox)
    		if not GetCVarBool("Tamrael_AOE_Toggle") then
    			xrn:message("|cff9933ffAOE - Mode.")
    			SetCVar("Tamrael_AOE_Toggle", 1)
    		else
    			xrn:message("|cff9933ffSingle - Mode.")
    			SetCVar("Tamrael_AOE_Toggle", 0)
    		end
    	end
    end
    
    AutoCooldowns = GetCVarBool("Tamrael_ActiveCD")
    AOEToggle = GetCVarBool("Tamrael_AOE_Toggle")
    just change the variable names to anything you want on makro and test vor the variables at the end of the code in the abilitiy you want to fire on makro.this code should be put on top of the rotation so the "GetCVarBool" will be updated every run of the routine the slash macros should only be read in once that why they are in the fi-statement.this is not my code just a like snippet out of cml's wonderful profile for my one personal use, so if you use the code and like it please consider +rep'in him not me

    EDIT: the part with the xrn:message is not needed but if you want to include it you have to to something like:
    Code:
    if PQR_RotationStarted == true then	
    	-- xrn Chat Overlay 
    	local function onUpdate(self,elapsed) 
    		if self.time < GetTime() - 2.8 then
    			if self:GetAlpha() == 0 then self:Hide() else self:SetAlpha(self:GetAlpha() - .05) end
    		end
    	end
    	xrn = CreateFrame("Frame",nil,ChatFrame1) 
    	xrn:SetSize(ChatFrame1:GetWidth(),30)
    	xrn:Hide()
    	xrn:SetScript("OnUpdate",onUpdate)
    	xrn:SetPoint("TOP",0,0)
    	xrn.text = xrn:CreateFontString(nil,"OVERLAY","MovieSubtitleFont")
    	xrn.text:SetAllPoints()
    	xrn.texture = xrn:CreateTexture()
    	xrn.texture:SetAllPoints()
    	xrn.texture:SetTexture(0,0,0,.50) 
    	xrn.time = 0
    	function xrn:message(message) 
    		self.text:SetText(message)
    		self:SetAlpha(1)
    		self.time = GetTime() 
    		self:Show() 
    	end
    end
    on top of the rotaion as well
    Last edited by Tamrael; 09-16-2013 at 11:18 AM.

  5. #95
    K-Z's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how i can remove the trinket use from the rotation?

  6. #96
    MystileWoW's Avatar Private
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the great updates. Is there any way I can make it so Multi-Shot will be used when I hold down Left Control and only then?
    I dont want a toggle AoE/Single target button. :P

    Appreciate your work

  7. #97
    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 MystileWoW View Post
    Thanks for the great updates. Is there any way I can make it so Multi-Shot will be used when I hold down Left Control and only then?
    I dont want a toggle AoE/Single target button. :P

    Appreciate your work
    Yes there is a way, but it would take a lot of work that I really can't be bothered doing. It's pretty simple to work it out though just take the code from mouseover serpent sting and change it to multishot, and change target to target rather than focus.
    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

  8. #98
    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 K-Z View Post
    how i can remove the trinket use from the rotation?
    remove any references to /use 13 and 14
    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

  9. #99
    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 idonotbot View Post
    Absolutely love your profiles KMD, keep my hunter looking great, but I do have one little request. Would it be possible to include /cast Berserking in the CDs along with the orc racial. I hate having to do all the edits everytime you update and am probably missing some.
    I could but I'm lazy. I'll see what I can do, not promising anything because I don't play a troll. I wouldn't even know the first place to start in terms of where it is best to use Berserking.
    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

  10. #100
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Isnt it easiest to find the ability and add /cast Berserking to "actions"?

  11. #101
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey KMD I'd love to use binding shot sometimes over mouse instead serpent, where should i begin to edit? Thanks

  12. #102
    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 temp123 View Post
    hey KMD I'd love to use binding shot sometimes over mouse instead serpent, where should i begin to edit? Thanks
    I'm actually thinking of making that a permanent change atm. Since I am finding that the cc aspect is just too good and there are only so many buttons that I can support atm.

    I should have this coded and uploaded along with some other changes I am currently testing out soon.
    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

  13. #103
    wowd00d's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    72
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I usually manually add /use 10 to use Synapse Springs, any chance that can be included? Or will it mess with the rotation?

    Thanks and keep up the excellent work!

  14. #104
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I'm actually thinking of making that a permanent change atm. Since I am finding that the cc aspect is just too good and there are only so many buttons that I can support atm.

    I should have this coded and uploaded along with some other changes I am currently testing out soon.
    Awesome matey

  15. #105
    Kaylo's Avatar Active Member
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    68
    Thanks G/R
    11/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I got a tip for those who want Binding Shot before KMD updates his already awesome profile, i love his work.

    I added this manually and put it high on priority:

    Code:
    if IsMouseButtonDown(4) then
    	if IsSpellKnown(109248) then
    		CastSpellByName(GetSpellInfo(109248))
    		if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end  
    		return true 
    	end
    end
    So what it does is shoot Binding Shot at my mouse location when i hold down mousebutton 4. You can change the mousebutton to suite your needs. Or even change it to IsRightControlKeyDown() for example. Only need to give the ability a name and post the above. No need to put in spell id's etc.

Page 7 of 21 FirstFirst ... 34567891011 ... LastLast

Similar Threads

  1. 4.3.4 Hunter Profile
    By skyzor in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 06-12-2014, 07:12 PM
  2. Elite Hunter Profiles.
    By Smilezz in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 11-20-2012, 11:00 AM
  3. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
  4. [Request] ZoloFigher, lvl 80 hunter profile, Bootybay rep farm.
    By Anthonyrox8 in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 01-23-2009, 04:39 PM
  5. [Diary] My Hunter // Profiles Inside!
    By StopTheOncoming in forum WoW Bot Maps And Profiles
    Replies: 15
    Last Post: 06-29-2008, 09:37 PM
All times are GMT -5. The time now is 10:16 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