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
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
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.
anyone can help me, how i can remove the auto-used of the trinkets? , plz any help?
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 meCode:-------------------- -- 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")
EDIT: the part with the xrn:message is not needed but if you want to include it you have to to something like:
on top of the rotaion as wellCode: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
Last edited by Tamrael; 09-16-2013 at 11:18 AM.
how i can remove the trinket use from the rotation?
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
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
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
Isnt it easiest to find the ability and add /cast Berserking to "actions"?
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
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!
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:
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.Code:if IsMouseButtonDown(4) then if IsSpellKnown(109248) then CastSpellByName(GetSpellInfo(109248)) if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end return true end end