• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Problem - Long term buffs

Coty

New member
Joined
Feb 22, 2017
RedCents
Hi, as title says for whatever reason the group buffs or self buffs that have a longer cast time are not being cast.
Dunno if you guys test them with 100% cast speed increase (if there's even a cap on cast speed) ... but it sure a'int working. I must either have the X spell mem on a dif gem other then 8 since its default in kiss and buff it myself. Any way i can fix or patch it myself w.o needing to self buff it?
 
Is it the long cast time or the long recast/time it takes before it becomes ready after you mem it?
 
Long cast time, for example Voice of Prescience its a group buff from Enchanter for me it has 6 seconds cast time. Starts casting it and before finishing casting it she sits down to mem a dif spell on that gem. I'd guess anything above 3 seconds cast time buff most of the time gets interrupted before fully cast.
 
There is no time limit on when casting a spell. The code waits in a loop until your finished casting or the spell is canceled due to interrupts...

Rich (BB code):
                /casting "${castWhat}" gem${MiscGem} 3s -maxtries|2
                /delay 5
                /while (${Cast.Status.Equal[C]} && ${CastResult.NotEqual[CAST_CANCELLED]}) {
                    /if (${sentFrom.Equal[SingleHeal]} && ${CastingInterruptOn}) {
                       /call KACheckHP
                    } else /if (${Select[${sentFrom},dps,gom,burn]}>0 && ${CastingInterruptOn}) {
                       /call KACheckDPS
                    } else /if (${Select[${sentFrom},buffs,buffs-nomem]}>0 && ${CastingInterruptOn}) {
                       /call KACheckBUFFS
                    }
                }

Turn off CastingInterruptOn and see if keeps happening..
 
:xd: Ok thanks, that seem to have fix it. Thought that thing was for dps/heals only, oh well. Thanks again.
 
CastingInterrupts works with DPS, Heals, and Buffs. But it is rare for buff to get interrupted. it basically check to see if your target runs out of range of the spell you are casting and then cancels the cast. Other than that it is not normal for buffs to interrupt..
 
Nah it was doing it even on self buffs, so far so good tho. Fingers cross for it to work as well for my gf when she wakes up :D
 
There is also a check for if you are casting a buff and the Buff is NOT a self buff and you don't have a target.

Self buffs don't require you to target yourself, but when buffing others you have to have a target..
 
Yes, its working mostly. The interrupt seems to happen less often w.o the CastingInterrupt on.
It did it yesterday a couple of times for my gf after MA (Mage) died, got res then Enchanter started getting interrupt when casting group buff.
 
Once you set CastingInterruptsOn=0 Kiss no longer checks for interrupting. SO if you are still getting interrupts after turning it off, then it isn't kiss.
 
Problem - Long term buffs

Users who are viewing this thread

Back
Top
Cart