DRG pulls me around 1150-1200 dps on faust, i180
do you bother attacking from the side and back, or just stay in one spot ? if so what spot ?
I use Hive weapon(I used drg routine to get the weapon). I camp the rear until SHarper of Fang or w/e pops up, then I move to the side. Then back to the rear. You have plenty of time to switch to the side.do you bother attacking from the side and back, or just stay in one spot ? if so what spot ?
Sure you just open UltimaCR/Rotations/Behaviors/CombatBuffs/Machinist.cs and change HeadGraze() to SuppressiveFire()Any way to change MCH interrupt to Suppressive Fire rather than Head Graze? Stun seems to be more useful for soloing than silence.
Anyone using Ultima for end game content? I've had a bit of success with Eklipses SMN, a ton with the DRG routines(usually top dps). I was wondering how the level 60 routine is for MCH, it seems like a fun job to have. I don't want to gear it though if it's far from being usable for end game.
Sure you just open UltimaCR/Rotations/Behaviors/CombatBuffs/Machinist.cs and change HeadGraze() to SuppressiveFire()
Anyone else having issues with ninja dps while warrior is using storm's eye. I have been trying to fix it for hours now, just wondering if anyone else has any issues?
private async Task<bool> DancingEdge()
{
if (Ultima.UltSettings.NinjaDancingEdge &&
Actionmanager.LastSpell.Name == MySpells.GustSlash.Name)
{
if (!Core.Player.CurrentTarget.HasAura(MySpells.DancingEdge.Name, true, 6000) &&
!Core.Player.CurrentTarget.HasAura(MySpells.DancingEdge.Name, false, 6000)[COLOR="#A52A2A"] &&
!Core.Player.CurrentTarget.HasAura("Storm's Eye", false, 6000)[/COLOR])
{
return await MySpells.DancingEdge.Cast();
}
}
return false;
}
I've used it in Alex 1-4, Bismark Ex, and a couple others. Works great, with one hitch that may be my lack of knowledge on how to make it do what I want. I'd love to be able to control WHEN the CD's get popped for extra dps. On Bismark Ex, Rav, etc, sometimes you need to pop them at certain times to burst, instead of on pull. If I could figure that out, it would be perfect. Even as is, it's amazing bard dps, I just really wish the burst was on command.
Speaking of the above, anyone know how to solve that?
easiest way to do this outside of a created toggle is to simply go into your combat = bard.cs file and combatbuffs bard.cs file and add a // in front of the lines of the move syou dont want to auto / i.e use manually then when its back to afk mode remove the lines.