Originally Posted by
cukiemunster
OK I will give this a whirl. Thank you very much. Your attachment said it was invalid though, I guess because it is still pending approval. But I get the overall gist of what you are saying. If I wanted to have both show up for me under PQR, the edited one, and the correct one with button pushing, could I rename the edited one to Firekittehedit_DRUID_Abilities.xml, and leave Firekitteh_DRUID_Abilities.xml there for normal Ultra? and I shouldn't have to duplicate Firekitteh_DRUID_Rotations.xml would I? Just the ability section if I understand this correctly.
EDIT:
After some trial and error, I did have to make a 2nd Rotations file for the edited Abilities file. I am slowly figuring this shit out lol. Who knows, at this rate I may be able to code my own profile sometime before 2025 lol
EDIT2: Is it at all possible to add into the coding of Hour of Twilight to stay out every 3rd one? I understand that this would not be mass used, but if it is at all possible I would GREATLY appreciate some guidance. If it isn't even possible to code this, I can manually hit the button every 2 minutes or so. Just curious if it is even possible, or if anyone would be willing to help me out if it is.
Under Special Events where it has Hour of Twilight code, change it to:
Code:
-- Avoid Hour of Twilight on Ultraxion, Delete next 3 lines if you are working as tank
local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
if channelSpell == GetSpellInfo(109417) and endTime/1000 - GetTime() < 1.3 and UnitBuffID("Player", 61336) == nil and UnitBuffID("Player", 22812) == nil
then RunMacroText("/click ExtraActionButton1") end
In essence, if you have Barskin or Survival Instincts or both popped, you should stay out instead of it clicking the button. When they have you staying out to soak, your having to hit these abilities right? If your using something else besides these abilities, let me know and I can add some more to the list.
P.S. Might want to test this out in LFR as I have yet to test it out completely. It will still pop Hour of Twilight if you do not have Barskin or Survival Instincts on your buff bar, so you should be good to go.