where can i change that at lol yah cuz it does mess up the rotation
You have to go into the methods folder? I believe, the big file around 15-20kb. Open it in note pad, look for that spell, it should say 20000, change it to 22000
where can i change that at lol yah cuz it does mess up the rotation
New version.
Changed some Location casting stuff (needed changes to make MCH Turret and BLM Ley Lines work properly). Made a few MCH improvements. Fixed NIN Goad (hopefully).
The big stuff in this version is that I finished fleshing out the spell library and class/job methods (so that those of you making your own edits only need to plug in the correct logic rather than dealing with Ultima's core).
I also finally got around to putting in some healing logic (specifically for WHM for now). No idea how it'll perform (I literally just finished it before posting). If there are any WHMs out there let me know how it does. I know that RebornBuddy's Combat Assist has some quirks like not healing or buffing outside of combat as well as requiring you to have a target (even if you're not actually healing that target). I might end up having to make my own bot base to get around the limitations.
Now that I got the big stuff out of the way hopefully I can start helping everyone with the 50-60 skills. It's tough since I can't test any of my work (I'm slowly leveling up with Fatebot but it's going to be a long time before all my Jobs are 60) but I'll do what I can.![]()
I accidently updated to your latest version and it broke the summoner files from the previous page with all the new spells working, how do I get the version before this update, or even better can you add the new summoner spells into the rotation.
Another new version. Had a bug with Stoneskin II.
Yeah I'm working on all the new skills now. Not sure why it would break (I'll have to take a look at the work they did). It's probably because they had to do their best without the core being there and now that it's there it's conflicting or something. Thanks for the heads up.
Could you take a look at drk Unleash ability - it won't cast it at all, only time it casts it is if you get a proc from unmend which you never use unless your pulling and running in since its a ranged ability. It's pretty much needed for aoe trash threat in five mans, unless I'm missing something. But you can't really grab that many mobs without it.Another new version. Had a bug with Stoneskin II.
Yeah I'm working on all the new skills now. Not sure why it would break (I'll have to take a look at the work they did). It's probably because they had to do their best without the core being there and now that it's there it's conflicting or something. Thanks for the heads up.
Poo...
Fixed above mentioned Duality bug, I think...
Dragoons are the thing now right? My Dragoon is only level 59 so I can't test the level 60 skill, but its coded there in theory. Should be easy enough for people to adjust though...
private async Task<bool> Geirskogul()
{
if (Core.Player.HasAura("Blood of the Dragon", true, 14000) &&
(Core.Player.HasAura("Enhanced Wheeling Thrust") || Core.Player.HasAura("Sharper Fang and Claw")))
{
return await MySpells.Geirskogul.Cast();
}
return false;
}
It was working great before RB update. But this files broke ultima with the current RB release. Any fix?Poo...
Fixed above mentioned Duality bug, I think...
Dragoons are the thing now right? My Dragoon is only level 59 so I can't test the level 60 skill, but its coded there in theory. Should be easy enough for people to adjust though...
Ruin III was in the arcanist spells file with the other two which is the reason you were having an error I probably should have included that file as well my apologies. I have made some changes now for double fester painflare and vice versa, as well as moved energy drain back to more of a MP function at low mp. I've also added some HP Limits into the 3 main dots, I think they are working since not casting on dummy when I force proc the HP. Hope this helps.
View attachment 182231 >Ultima/Routines/Behaviors/Combat/Summoner.CS
View attachment 182232 >Ultima/Routines/Methods/Summoner.CS
View attachment 182233 >Ultima/Spells/MainSpells/Arcanist.CS
View attachment 182234 >Ultima/Spells/MainSpells/Summoner.CS
Poo...
Animation locks letting you down?
Missing those positions?
Then I've got the solution for you...
Dragoon will jump less during the combos and when Heavy Thrust is low so you can hit those positions better. You will still die to AOE though but it's OK I've been complimented by the raid after I died 4 times and still cleared Alex 4.
Also with becto's logic for Gayskull or whatever but reduced to 13 seconds.
Ninja will Armor Crush when 30 seconds or less.
Thanks for the quick response, here are the errors I recieve when trying to use the 4 summoner files from the previous page.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Rotations\Behaviors\Combat\Bard.cs(39,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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Rotations\Behaviors\Combat\Dragoon.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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Rotations\Behaviors\Combat\Monk.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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Rotations\Behaviors\Combat\Ninja.cs(77,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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Rotations\Behaviors\Combat\Summoner.cs(84,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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\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.
[04:57:37.498 N] Compiler Error: g:\Reborn\Routines\UltimaCR\Spells\Main\ArcanistSpells.cs(465,52) : error CS0117: 'UltimaCR.Spells.CastType' does not contain a definition for 'Location'
Could you take a look at drk Unleash ability - it won't cast it at all, only time it casts it is if you get a proc from unmend which you never use unless your pulling and running in since its a ranged ability. It's pretty much needed for aoe trash threat in five mans, unless I'm missing something. But you can't really grab that many mobs without it.
Is this support lvl 60 dragoon?
Is there any way to just simply change the DRK combo being used to the mana regen combo? Hard Slash > Syphon Strike > Souleater. There is currently no MP management going on, so the class constantly runs out of MP and just rests, which is terrible for FATE botting. I spend 70% of my time just standing at a fate regenerating mana.
Just wanted to give a heads up, the ArcanistSpells.cs breaks the routine, I was having an issue with the routine not loading when using your files, the fix was to change the following in Arcanist.CS on line 465
OLD "CastType = CastType.Location"
NEW "CastType = CastType.TargetLocation"
It now works perfectly with that one change, for anyone else having the issue.
My bard now uses the flaming arrow rarely. like once every 10-15 fights! Before the last update it would use it whenever its up. (and btw that isn't right xD because sometimes it would just go when the mob have like %1-2 HP)
If we have a bard here, does it work for you or it's just me? (I'm using smart target all the time)
Anyone has information on how to register Aethertrail Attunement in the routine? Its not a spell, but a status, however the routine only checks "Aura"s based on the job's Spell List
SMN Update coming shortly had to redo the logic, and still trying to figure out how for it to recgonzie aetherial auttnement III. Reverting shortly...
i've decided to build in deathflare at < 3 sec on trance but I prefer to use it manually , I do not have any logic for tri disaster so it wont cast this, I"ve reworked how ruin III works out of combat and for low HP targets as well as applying dots. so you very well if on the dummy will just pretty much spam aether abilites and ruin III
I do not have any logic for tri disaster so it wont cast this