Are there any Shaman elemental cc ?
Are there any Shaman elemental cc ?
I personally would attack this with a counter....
First shot makes SteadyShotCounter = SteadyShotCounter + 1
so it would look like this imo
that's just my way of thought.... i thought of this when the issue originally arose, but i'm not a hunter expert by any means... figured some1 would have thought of a better idea by now >.<Code:local SteadyShotCounter, GetSteadyBuffTimer if not GetSteadyBuffTimer or not SteadyShotCounter then GetSteadyBuffTimer = 0 SteadyShotCounter = 0 end if GetTime() - GetSteadyBuffTimer > 10 [I THINK THATS THE BUFF LENGTH RIGHT???] and SteadShotCounter >= 2 then SteadyShotCounter = 1 return true elseif SteadyShotCounter <= 1 then SteadyShotCounter = SteadyShotCounter + 1 if SteadyShotCounter >= 2 then GetSteadyBuffTimer = GetTime() return true else return true end end
Great job, Mentally!![]()
I have a simple question.....followed by a request....
Simple Question.....: WHY ISN'T SHEURON A CONTRIBUTOR YET?!?!?!?!?!?!?!?!?!?!
Request: Can more people rate my Pally Profile either by PM'ing me or with Issue Tracker alerting me to any issues you may have (or saying what you really like about it)?
A piece of code i like to share
Ability name: Mark of the Wild
Actions:
Cancel channel: False
Recast Delay: 10000
Spell ID: 1126
Target: Player
What this does: Cast Mark of the Wild if any player on party is missing it or similar buff (Blessing of Kings and mbrace of the Shale Spider). We using a recast delay 10 seconds to avoid being obvious we doing it with a bot.Code:if not UnitAffectingCombat("player") then if not CheckMotw then function CheckMotw(t) local buff = { 1126, 20217, 90363 } for i=1, #buff do if UnitBuffID(t,buff[i]) then return true end end end end local group = "party" local members = GetNumPartyMembers() if GetNumRaidMembers() > 0 then group = "raid" members = GetNumRaidMembers() end for i = 1, members do local member = group..tostring(i) if not CheckMotw(member) and UnitInRange(member) and not UnitIsDeadOrGhost(member) then return true end end if not CheckMotw("player") then return true end end
Was Wondering if someone could point me in the direction of an updated/good fury Profile?
lol but that's only because they aren't in the profiles XD most people normally start by taking what you've already done and trying to change it into their own play-style...... so that's what confused me
oh well..... guess i'll stay out of that which i don't know for a while XD
@Xelper: What about add another option to ability settings
"Skip if SpellID not known: false/true" Skip ability on rotation if IsSpellKnown(spellid) return false
That could make most profiles leveling friendly.