Hey all, I am planning on working on a Subtlety rotation. I was wondering if one of the devs with a bit more coding knowledge would want to help me. I know the rotation and can code most of it, but some of the more complicated concepts I would need assistance on. I already have flowcharts and most of the psuedo code written out, just need to get it actually written. Drop me a response here or a PM to work something out.
SV hunter is too simple,
but if you have Lock and Load - Spell - World of Warcraft Lock and Load ,
the best way get higher Dps is cast two Explosive Shot ,and if your focus about 44,then cast two Arcane Shot Arcane Shot - Spell - World of Warcraft,
if low than 22,cast one Cobra Shot Cobra Shot - Spell - World of Warcraft
Dps will more higher than kickmydog's SV :Single target
and im new here,I don't know how to make it.
is anyone can help me
Last edited by gongmang1; 02-15-2012 at 02:15 PM.
buba sry for another noob question can u pls write the my spell with this your add. pls and +rep for yor help.
please give the profile a druid Balance pvp
This should work:
I'm sure there's a much more elegant way to do this, but as you know if you've seen my code I am not an elegant coder.Code:local buff = { 43242, 92965, 93631, 76634, 88186, 76307, 31884, 2825, 32182, 80353, 1719, 17, 33763, 96802, 6940, 102599, 89542, 11426 if 100 * UnitPower("player") / UnitPowerMax("player") < 40 then if not StealThisBuff then function StealThisBuff(t) for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end end end if StealThisBuff("target") then return true end end
Boss when are you fixing the rotation problem with stance dance ?
Whats the problem with it? I havent noticed anything when I've been playing
that would only spell steal if mana was under 40
try this.. i am doing this over my phone so please check
Sent from my ADR6300 using TapatalkCode:local buff = { 43242, 92965, 93631, 76634, 88186, 76307, 31884, 2825, 32182, 80353, 1719, 17, 33763, 96802, 6940, 102599, 89542, 11426 } local unitmana = 100 * UnitPower("player") / UnitPowerMax("player") if unitmana<40 then return false elseif not StealThisBuff then function StealThisBuff(t) for _,v in ipairs(buff) do if UnitBuffID(t,v) then return true end end end end if StealThisBuff("target") then return true end