AoE likes to lock up but that is most likely a bug on blizzards part with the toggling on/off FnB
Potion of the Jade Serpent still likes to lock up form time to time
- I remvoed auto rain of fire... bound a different key to it and removed its bound key... BUT the profile still disables/enables it Might want to look into that as well
so far i concur with AoE locking up from time to time. Mainly due to ember logic - if you have none, nothing is casting. The profile will turn it off/on...i think the fix for this would be if off, turn on, then fix logic.
I've turned jade serp and healthstone off for now. let me know if this just works again.
Ghetto fix for AoE locking for me was to add a new ability in the rotation before Fire and Brimstone...I just called it "Fire and Brimstone - Cancel"
I'm at 15 minutes alternating between AOE and Single Target with no locks now. Hopefully this will help until Mav can do something awesome and artistic.Code:if UnitBuffID("player",108683) and UnitPower("player", 14) == 0 and AOE_MODE then RunMacroText("/cancelaura Fire and Brimstone") return true end
Last edited by Axercis; 05-22-2013 at 08:08 PM.
Is everyone using PQR 2.2.1 ? I ran it and it didnt lock up for me but i'll try and tweak it with the fix above. I thought the way it worked was FnB would only toggle off if you had elss than 1 full ember so shouldn't really be a problem, but I did test it on the 4 targets in shrine so maybe on less it will hang.
i'll check the RoF thing for you later as well
No ETA on jade serpent pot, I dont have any in my bags and with 'Auto Potion' it doesnt break for me
The problem appears to be the itemcount check in the autopot event.
I simply remove the itemcount local variable and check in the use statement, and it works fine. Not sure how the profile would behave if you did not have any pots with this modification, however. It does let me raid in the meantime without lockups for now though.
Last edited by Axercis; 05-23-2013 at 11:17 AM.
Yes, I am using the most up to date PQR
Also wanna mention that it stops when you have timewarp og blood lust buff..
It didn't lock on me last night during my ToT any time we lusted
Having a nightmare of a time trying to get the rain of fire to work. automatic or mouseover. Any words of wisdom on this?
thx it was the potion that made it stop. Also i have added abit to the code provided from above since we also need to cancle the aura when we turn back to single-target mode and not waste embers.
if UnitBuffID("player",108683)
and UnitPower("player", 14) == 0
and AOE_MODE then
RunMacroText("/cancelaura Fire and Brimstone")
return true
elseif UnitBuffID("player",108683)
and not AOE_MODE then
RunMacroText("/cancelaura Fire and Brimstone")
return true
end