• 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 - Problem Slowing Multiple Mobs (Shaman)

beiko73

New member
Joined
Jan 26, 2018
RedCents
I have a problem I could use some help with.
Here is the problem: I am unable to single slow multiple mobs at camp (this is different from AE slow--triggered at 4).
This is what the code below does (and I don't want it to do): it casts EACH different slow on the SAME mob and THEN slows the other mob again with BOTH slows.
This is what I'd like to do: Have shaman do a check on each mob that comes in, and in succession slow each one as quickly as possible. For example, I want 1st mob slowed with AA Turgur's, 2nd mob slowed with counterbias slow, 3rd mob with AA Turgur's again since the Turgurs should be off cooldown; they should rapid-fire off since the cool down should be ready to go...slowed, slowed, slowed...quick-like; and now on to the rest of dps, debuffs and heals, etc. Here is what I have:

[General]
KissAssistVer=10.2.3
Role=Assist
CampRadius=100
CampRadiusExceed=400
ReturnToCamp=0
ChaseAssist=0
ChaseDistance=10
MedOn=1
MedStart=20
MedCombat=0
LootOn=0
RezAcceptOn=0
AcceptInvitesOn=1
GroupWatchOn=1
CastingInterruptOn=0
EQBCOn=1
IRCOn=0
MiscGem=12
MiscGemLW=12
MiscGemRemem=0
HoTTOn=0
CampfireOn=0
CharInfo=Shaman|97|GOLD
DefaultUI=TRUE
DPSMeter=1
ScatterOn=0
ConditionsOn=1

[DPS]
DPSOn=2
DPSCOn=1
DPSSize=12
DPSSkip=1
DPSInterval=1
DebuffAllOn=2

DPS1=Turgur's Swarm|100|Mob
DPSCond1=${Target.PctHPs}>20 && ${Me.AltAbilityReady[Turgur's Swarm]} && !${Target.Slowed.ID}

DPS2=Renewing Counterbias|100|Mob
DPSCond2=${Target.PctHPs}>20 && ${Me.SpellReady[Renewing Counterbias]} && !${Target.Buff[Renewing Counterbias].ID}


______

I know the DPSSize is set to 12 (I have only posted the general and dps-slow code). I have obviously not set it up correctly. Any suggestions on the code to get the Shaman to slow as described above is greatly appreciated. If posting the whole file would be helpful, I can do that

Thanks!
 
it uses both cause your not looking for the other slow on it....
Rich (BB code):
DPSCond1=${Target.PctHPs}>20 && ${Me.AltAbilityReady[Turgur's Swarm]} && !${Target.Buff[Turgur's Swarm].ID} && !${Target.Buff[Renewing Counterbias].ID}
should work and
Rich (BB code):
DPSCond2=${Target.PctHPs}>20 && ${Me.SpellReady[Renewing Counterbias]} && !${Target.Buff[Renewing Counterbias].ID}  && !${Target.Buff[Turgur's Swarm].ID}
should work but not tested
 
from the kissassist wiki

Rich (BB code):
Examples:
Shaman:
DPS1=Regenerating Counterbias|99|debuffall|slow|always

you might need to tack on |debufall|slow atleast instead of mob for it to go through both of htem to debuffall

always will try and cast the debuff even if its blocked by another buff so its not super advised to use.

and then in your condition make sure to check for the other slow if you dotn want to overwrite it i guess.
 
That's what I was missing I think. I'll check it out and see what happens. THANKS!
 
Problem - Problem Slowing Multiple Mobs (Shaman)

Users who are viewing this thread

Back
Top
Cart