Hi i have a problem, i'm using your arms profile and protection profile (dual spec), sometimes when i change to prot from arms, it fcks up rotation and it doesnt use shield barrier and other abilities
Hi i have a problem, i'm using your arms profile and protection profile (dual spec), sometimes when i change to prot from arms, it fcks up rotation and it doesnt use shield barrier and other abilities
Do a /reload and re-activate the profile each time you do a spec-change.
I believe the problem for the destro profile was from mannoroth's fury i removed it from the ability list and it aoe'd perfectly for 10mins.
Thats good. Now my fury is fixed I might have 5 mins to look.
On the subject of Fury, I asked for testers snd not one person pm'd me. So screw it, im keeping it for me. Enjoy paying for other people's profiles.
hey mavmins,
to be honest, i dont think your destruction profile needs a complete rewrite. i took the time to tune your chaos bolt ability, and now it actually does quite well. i´m not sure whether it would be ok to post it here for other users.
regarding your fury profile: personally i didnt write a request for testing because i always think that devs like you only give it to the most active and well known posters around here. i always liked your profiles and i am sure that many other people do. but of course it´s your right as a dev to keep your work to yourself.
cheers
if you tweak anything or change it then please do share it, my profiles are free so people can do what they want with them - i started making my own profiles by tweaking other people's
if you wanna test the fury one send me a PM with your skype ID. if I was writing paid profiles I might restrict who I send it to but anyone can test it for me, I just want to make sure i get actual feedback
hey mav ..
i really want to test ur new fury profile . but thing is i dont have skype .... so if i can contact u with email or somthing that would be great
Why are you so angry? One thing you can do is upload it as a test version. Fury Warriors arent so common as all the other classes and some ppl arent prepared to give up their Skype ID online on sites like these cus it usualy contanes same info as the wow acount.
Best regards
i get annoyed because people complain there is no fury profile, so i make one, then they go into Bot Questions and Requests and say things like 'I tried it and it sucks' without actually feeding back what they don't think works properly so I can't make it better and its a wasted effort. Most of the comments I get in PMs are completley rubbish like oh i want this spell to do this and I want this spell in this order and people never bother to tweak things themselves
its quite infuriating, try making some profiles and see if you like it
ok, here is my quick edit of mavmins chaos bolt ability. i basically added more int procs and improved the burning ember pooling. i have more ideas but i dont know how to code them yet, which are:
- if we get an int proc and are currently not casting a cb, stop casting the current spell and start casting cb
- only cast the cb when we will still have the buff on end of cast
here is the code:
Code:local Backdraft,_,_,BDStacks = UnitBuffID("player",117896) local SpellStart, SpellDuration = GetSpellCooldown(113858) local darksoul = SpellStart + SpellDuration - GetTime() local Targethealth = 100 * UnitHealth("target") / UnitHealthMax("target") local havoc, _, _, stacks = UnitBuffID( "player", 80240) local SaveTime = 20 ---------------------------------------------------------------------------- if PQI_MavminsDestruction_EmberSaveChaosBolt_enable then SaveTime = PQI_MavminsDestruction_EmberSaveChaosBolt_value else SaveTime = 0 end if Targethealth < 20 or AOE_MODE == true or PQR_IsCastingSpell(116858) or UnitCastingInfo("player") == GetSpellInfo(116858) or PQR_IsMoving(0.3) == true or havoc == nil and Backdraft ~= nil and BDStacks > 2 then return false end if UnitBuffID("player",113858) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",146046) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",148906) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",146184) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",104993) ~= nil and UnitPower("player", 14) >= 2 or UnitBuffID("player",125487) ~= nil and UnitPower("player", 14) >= 2 or darksoul >= SaveTime and UnitPower("player", 14) >= 3 or not PQI_MavminsDestruction_EmberSaveChaosBolt_enable and UnitPower("player", 14) >= 3 or havoc ~= nil and stacks == 3 and UnitPower("player", 14) >= 1 then CastSpellByName(tostring(GetSpellInfo(116858))) LASTCAST = "ChaosBolt" return true end
Last edited by wwndrk; 10-29-2013 at 01:42 PM.
thanks for putting that out here wwndrk, I'll be trying that out since I got normal 2/2 wu'sholay and flex 2/2 kadris toxic totem.
i added wush trinket
[/QUOTE]Code:local Backdraft,_,_,BDStacks = UnitBuffID("player",117896) local SpellStart, SpellDuration = GetSpellCooldown(113858) local darksoul = SpellStart + SpellDuration - GetTime() local Targethealth = 100 * UnitHealth("target") / UnitHealthMax("target") local havoc, _, _, stacks = UnitBuffID( "player", 80240) local SaveTime = 20 ---------------------------------------------------------------------------- if PQI_MavminsDestruction_EmberSaveChaosBolt_enable then SaveTime = PQI_MavminsDestruction_EmberSaveChaosBolt_value else SaveTime = 0 end if Targethealth < 20 or AOE_MODE == true or PQR_IsCastingSpell(116858) or UnitCastingInfo("player") == GetSpellInfo(116858) or PQR_IsMoving(0.3) == true or havoc == nil and Backdraft ~= nil and BDStacks > 2 then return false end if UnitBuffID("player",113858) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",146046) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",148906) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",146184) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",95669) ~= nil and UnitPower("player", 14) >= 1 or UnitBuffID("player",104993) ~= nil and UnitPower("player", 14) >= 2 or UnitBuffID("player",125487) ~= nil and UnitPower("player", 14) >= 2 or darksoul >= SaveTime and UnitPower("player", 14) >= 3 or not PQI_MavminsDestruction_EmberSaveChaosBolt_enable and UnitPower("player", 14) >= 3 or havoc ~= nil and stacks == 3 and UnitPower("player", 14) >= 1 then CastSpellByName(tostring(GetSpellInfo(116858))) LASTCAST = "ChaosBolt" return true end