I play Fire and I noticed something and I cannot find a way to fix it. It seems on a boss encounter, combustion is used before RoP and sometimes, RoP is not used until combustion is finished. This is a huge damage loss. On boss pull, RoP should be first, then combustion, then whatever. I have not just noticed this on one boss. This is every boss encounter even if I have 2 charges of RoP. My fix is to pause enyo, manually cast rop, then unpause enyo... Kinda annoying.
Your thinking is ugly, because just think about his code we dont know ... "if (CombustionCD < 45000) return false;" If you will take this on first place it will be interrupt his code and so a easy method is to jump to avoid it. Sure, its not a good option to use a jump, but so he can use this without get problems with his current code. So please stfu if you dont think till end. Peace @Millz I done a lot of tests, everything whats decrease the dps is avoidable if we press manual "disable cd's" One example is, FlameOn ... Current logic will use it in the second burst time to early, result is a dps @ 260k by 6min If i disable it and enable it in the right time when combustion is coming up i get dps @ 290k by 6min Try it on your self to add in first priority, Code: if (CombustionCD < 45000) return false; and then handle your code, its just one "if" but can increase the damage a lot.
What are you on about? If CombustionCD is NOT below 45000, it HAS to be above or equal to 45000; therefore we only need ONE if check, since we can presume it is the opposite of the if statement if it returns false. Additionally, using goto in this case is utterly retarded and unnecessary. In conclusion: Code: bool CastFlameOn() { if (CombustionCD > 45000) goto Jumphere; if (CombustionCD < 45000) // 45000-55000 return false; Jumphere: // Your logic return true; } the code above basically does the same as the code below Code: bool CastFlameOn() { if (CombustionCD < 45000) return false; // Do code here return true; }
help me plz! I purchased this product. But I am a very hard day, you do not know the exact instructions ... I just want to write a raid described as a dungeon, I automatically. Wizard wants the best dps! Description Please....(__)
^ also seems the rotation is using dragons breath without any thought to distance checks. looks super bottish. Some type of TTD timer for Rune of Power would rock too but im not sure thats possible with hb api or not.
Hi,Millz I noticed i will cast combustion before ROP sometimes,usually appear in moving,maybe some bug in the routine. Thank you very much.
I'll catch up with comments above tomorrow that I've not read/responded to yet. A new public build has been pushed to the store, and is currently awaiting approval from the Bossland GmbH staff. This can take up to 3 business days. [17/Oct/2016 - Alpha] - [Fire] Will no longer cast Ice Barrier while Combustion active. - [Fire] Added some debugging / minor tuning to Flame On. - [Fire] Tuning to Fire Blast usage. - [Fire] Fixed an issue where Combustion could be cast without Rune of Power active (if talented).
Thanks for the last bullet point. I appreciate your hard work. I have one more inquiry that I cannot seem to figure out when manipulating settings in the GUI. I have living bomb talented yet I have to manually cast it. I literally see it cast never during a boss fight. Is it only set up to be used on AoE? I feel like it is a waste of a talent with your routine if it won't be used at all during a boss fight.
Could you add support for fire mage legendaries? Such as a tick feature that can change the rotation (scorch below 25%) or fix range (25 added yards to fire breath).
Hi, i'm not able to purchase through the store. The only option I can even read is the top one but I've tried 2 different debit cards without success. Plz help! Edit - Just got off the phone with my bank and they confirmed they are not declining the charge. How come paypal isn't an option!
Do I need a Botbase for this profile to work in legion raids (Emerald Nightmare). Its been a long time since I last used the bot and dont know if anything has changed. I remember using Enyo Botbase back in WoD, but it looks like its outdated for Legion. One more thing how does this profile perform in EN, I'm looking to push Mythics with my guild.
It does have distance checks for Dragon's Breath - the range is further than the animation. RoP has a TTD check. The TTD calculation is custom code, not API LB should be used on >= 2 mobs - never on a single target. I'll be adjusting the rotation soon to fix this (and probably drop the 'full aoe value' setting). On my to-do list. Shouldn't be. Need a log for this. It'll cast when units near target hit the full aoe setting value on the fire tab. I'll be changing this in the near future though. ------- New build was approved early hours of this morning; [23/Oct/2016 - Alpha] - [Fire] Flame On is no longer used during trash pulls. - [Fire] Further tuning to Fire Blast to pool charges for Combustion. - [Fire] Tuning to casting Scorch while moving - to not cast if we can cast Ice Floes. - [Fire] Added an aura time remains check to Kael'thas's Ultimate Ability. - Ice Floes will now react faster to moving. - Every man for Himself is now only looking for stun effects, instead of all crowd control effects. - Blink random direction has been changed to Blink backwards, and is now more accurate at setting the facing direction. - Blink/Shimmer should no longer double cast. - Fixed an issue with running into melee range when movement enabled.