speshulk926
Community Developer
- Joined
- Dec 8, 2014
- Messages
- 911
Great, concise post.NO Interrupt
Great, concise post.NO Interrupt
My guess is due to the way it is trying to cast Fel Rush, it has to hit Down, Space and then Fel Rush almost simultaneously. I'll look at adding some sort of failsafe to that so it won't keep doing it.hi speshulk
i notice the bot now likes to back up when in a fight.. i use all movement target face etc on.. i have to manually move it forward to get it closer..
on havoc btw
it looks like stuttering backwards.. is it due to the new patch?? when i get into another dungeon run i will post a log.. ^^
anyway feels good to be top dps ^^
Yes, it's a good log. I'll read over it and post something in the next day or 2. I already have a preimptive fix in place, but need to test it some to make sure.i'm trying to post log i hope it turns out.. maybe its trying to adjust distance slowly causing to stutter?
View attachment 215336
public static async Task<bool> RotationSelector()
{
// we are playing manual, i am not alive, or I am mounted or on taxi, do not continue
if (HK.manualOn || !Me.IsAlive || (Me.OnTaxi) || Me.CurrentPendingCursorSpell != null)
return true;
Lots of good info here and very good points.Hey just saw the Project and did quick dummy testing, I like that its using Coroutines as Singular is not very performant I was looking for an alternativ.
Although im not into HB Api/Development I am/was using a personal modified Singular for my Tanking needs.
I want to use Sigils/Infernal Strike on my own just because no script can Place it as you want it in the current Situation, there is a nice and easy way to allow user Input for Sigil and Infernal Strike use, to allow you to be a god in 5man mystic+ Tanking. For the Infernal Strike its super because it does not have a GCD and you can directly use it, for the Sigils you need to spam a few times to get it before GCD/CR Input, or select Infernal Strike before and switch to Sigil so the CR wont go on. This wont cause Issues with the CR Casted Sigils/Infernal Strikes also, basicly pause CR while we have Spell on Cursor.
Targeting is a big deal in mystic+ and Dungeons in general, noone wants to get Target switched / dictated when running Dungeons. Im not sure why all the Routines need Targeting to be able to Glaive/Taunt non Aggro Mobs. Taunt and Glaive should be useable with "Mouseover" so why not just cast it on Mobs directly ? Also it should just cast it on Mobs where you are not #1 in the Aggro, some Mobs will Target Party Member to Cast on them, no Taunting needed here.
(Im not sure if it is like that atm, just did a quick 2min dummy testing and had a quick look at the code)
Singular doesn't use coroutines, so can't use any of their code. Have to create it all from scratch. I do agree with you on the taunting and interrupts though and not switching targets for it.So I used it today, all day long for Tanking, only changed Code as shown above and commented out Sigil of Flame use as there was no setting. Performence is nice, and overall its very useable. Very frustating Problem I found is that Interupt switches Target instead of directly Casting it on the Mob, Singular has direct Cast, gues you could just take the Code from there. Ive also seen "Threat" Code in Singular for #1 in Aggro check (Taunt/Glaive if Targets need Tanking)
I like to disable SOF because it will mess up the Mousedown event, like if you play with Right Mousebutton down to Strafe with A,D, it will stop strafing and you start turning, which is fatal in some Situations.