Cerberus619
New Member
- Joined
- Apr 11, 2015
- Messages
- 4
How do you make it so DRK does its enmity combo instead of its MP combo? It defaults the Syphon Strike combo, really annoying for running it in dungeons
How do you make it so DRK does its enmity combo instead of its MP combo? It defaults the Syphon Strike combo, really annoying for running it in dungeons
Oh shit lmao I didn't see that my first read, thanksthe answer is literally on the page before this one.
monk elixir field working now and the forbidden chakra is now firing as well but meditation is causing the bot to fire all cooldowns like internal release and blood for blood even out of combat
I didn't wanna say it like this but I'm a lvl 60 PLD and the PLD routine seems shitty
\Rotations\Behaviors\Combat\Summoner.cs
if (Ultima.UltSettings.SingleTarget) {
if (await BioII()) return true;
if (await Miasma()) return true;
if (await Bio()) return true;
if (await Swiftcast()) return true;
if (await Fester()) return true;
if (await ShadowFlare()) return true;
if (await RagingStrikes()) return true;
if (await Rouse()) return true;
if (await Spur()) return true;
if (await Aetherflow()) return true;
if (await Enkindle()) return true;
if (await Contagion()) return true;
if (await AerialSlash()) return true;
if (await EnergyDrain()) return true;
if (await RuinII()) return true;
return await Ruin();
}
That's a summoner theory post which I can't try myself yet (wont be home for a while)
The goal is to change the rotation according to this guide
Change to
Code:\Rotations\Behaviors\Combat\Summoner.cs
I added Swiftcaste in the Code not sure if it will work since Swiftcast is a cross-class skill (its used before raging strikes to align the timers better, since in Theory that Deathflare should be used at 1-2s left on raging strikes)Code:if (Ultima.UltSettings.SingleTarget) { if (await BioII()) return true; if (await Miasma()) return true; if (await Bio()) return true; if (await Swiftcast()) return true; if (await Fester()) return true; if (await ShadowFlare()) return true; if (await RagingStrikes()) return true; if (await Rouse()) return true; if (await Spur()) return true; if (await Aetherflow()) return true; if (await Enkindle()) return true; if (await Contagion()) return true; if (await AerialSlash()) return true; if (await EnergyDrain()) return true; if (await RuinII()) return true; return await Ruin(); }
This is by far not done and I'd like some help for the following (or a hint how to approach):
- Use a potion?
- Align Deathflare for RagingStrikes
- Use Tri-Disaster if atleast 2 dots are about to fall off during DreadWyrmTrance (aka DWT)
private async Task<bool> Tridisaster()
{
if (!Core.Player.CurrentTarget.HasAura(MySpells.BioII.Name, true, 6000) &&
!Core.Player.CurrentTarget.HasAura(MySpells.Miasma.Name, true, 6000) &&
!Core.Player.HasAura(MySpells.DreadwyrmTrance.Name, true, 5000) ||
!Core.Player.CurrentTarget.HasAura(MySpells.BioII.Name, true, 6000) &&
!Core.Player.CurrentTarget.HasAura(MySpells.Bio.Name, true, 6000) &&
!Core.Player.HasAura(MySpells.DreadwyrmTrance.Name, true, 5000) ||
!Core.Player.CurrentTarget.HasAura(MySpells.Bio.Name, true, 6000) &&
!Core.Player.CurrentTarget.HasAura(MySpells.Misama.Name, true, 6000) &&
!Core.Player.HasAura(MySpells.DreadwyrmTrance.Name, true, 5000))
{
return await MySpells.CrossClass.RagingStrikes.Cast();
}
return false;
}
I'll test it in around 2-3h, thanks for your input.
Did you add my changes to your file?
@mumitoll thanks for the suggestions.Swifcast is already added you might need to highlight it in the ultima form, its currently used for shadowflare due to the long gcd timer 2.96 or w/e. I have almost got raging strikes working the way I want hopefully Ill hvae this fixed by tomorrow night. I can definitely add the tri-disaster logic for dreadwyrmtrance, great idea not sure why I didnt thik of this. As far as pots I'm not entirely sure how to handle this.
I took a shot at this at work, so haven't tested it yet, someone let me know if it works. You will need to add an await tridisaster line in teh rotations/behavior/combat/ cs file or use the one attached.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Arcanist.cs(56,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Arcanist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Archer.cs(37,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Archer.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Archer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Astrologian.cs(16,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Astrologian.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Bard.cs(41,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Bard.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Bard.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\BlackMage.cs(55,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\BlackMage.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\BlackMage.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Conjurer.cs(16,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Conjurer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\DarkKnight.cs(19,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\DarkKnight.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\DarkKnight.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Dragoon.cs(46,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Dragoon.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Dragoon.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Gladiator.cs(15,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Gladiator.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Gladiator.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\HandLand.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\CombatBuff\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\PreCombat\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Pull\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Lancer.cs(42,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Lancer.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Lancer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Machinist.cs(17,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Machinist.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Machinist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Marauder.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Marauder.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Marauder.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Monk.cs(49,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Monk.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Monk.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Ninja.cs(83,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Ninja.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Ninja.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Paladin.cs(15,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Paladin.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Paladin.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Pugilist.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Pugilist.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Pugilist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Rogue.cs(56,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Rogue.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Rogue.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Scholar.cs(55,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Scholar.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Summoner.cs(82,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Summoner.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Methods\Summoner.cs(444,50) : error CS1061: 'UltimaCR.Spells.Main.SummonerSpells' does not contain a definition for 'Misama' and no extension method 'Misama' accepting a first argument of type 'UltimaCR.Spells.Main.SummonerSpells' could be found (are you missing a using directive or an assembly reference?)
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Thaumaturge.cs(52,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Thaumaturge.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Thaumaturge.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Warrior.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Warrior.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Warrior.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\WhiteMage.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\WhiteMage.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
Getting compiler errors
first I thought it was because of a typo (you wrote Tridisaster while everywhere in the code it says TriDisaster, but it didn't change anything.
Code:[18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Arcanist.cs(56,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Arcanist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Archer.cs(37,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Archer.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Archer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Astrologian.cs(16,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Astrologian.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Bard.cs(41,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Bard.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Bard.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\BlackMage.cs(55,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\BlackMage.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\BlackMage.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Conjurer.cs(16,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Conjurer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\DarkKnight.cs(19,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\DarkKnight.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\DarkKnight.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Dragoon.cs(46,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Dragoon.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Dragoon.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Gladiator.cs(15,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Gladiator.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Gladiator.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\HandLand.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\CombatBuff\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\PreCombat\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Pull\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\HandLand.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Lancer.cs(42,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Lancer.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Lancer.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Machinist.cs(17,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Machinist.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Machinist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Marauder.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Marauder.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Marauder.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Monk.cs(49,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Monk.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Monk.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Ninja.cs(83,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Ninja.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Ninja.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Paladin.cs(15,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Paladin.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Paladin.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Pugilist.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Pugilist.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Pugilist.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Rogue.cs(56,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Rogue.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Rogue.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Scholar.cs(55,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Scholar.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Summoner.cs(82,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Summoner.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Methods\Summoner.cs(444,50) : error CS1061: 'UltimaCR.Spells.Main.SummonerSpells' does not contain a definition for 'Misama' and no extension method 'Misama' accepting a first argument of type 'UltimaCR.Spells.Main.SummonerSpells' could be found (are you missing a using directive or an assembly reference?) [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Thaumaturge.cs(52,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Thaumaturge.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Thaumaturge.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\Warrior.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Heal\Warrior.cs(7,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\Warrior.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Combat\WhiteMage.cs(18,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [18:43:15.146 N] Compiler Error: d:\Downloads\buddy\Routines\UltimaCR\Rotations\Behaviors\Rest\WhiteMage.cs(12,42) : warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or 'await Task.Run(...)' to do CPU-bound work on a background thread.
I'm not sure but maybe you have to do this:
You will need to add an await tridisaster line in teh rotations/behavior/combat/ cs file or use the one attached.
Then make your own? Endus does some fantastic work in here and for free thats dealing with multiple jobs. Either be constructive and help towards making the routine better or just dont come in here and use it.
At home now , got it working, let me know if its working for others. Its compiling but sitll need to test the logic on the casting of it.