• 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

Question - OMM Group inis

Jalerian

Well-known member
Joined
Jul 14, 2016
RedCents
687¢
I am trying to get Kissassist to do its thing in Old Man Mckenzie GROUP missions. All of the spells are AAs in these missions and have an alt activate number. I am trying to capitalize on this by using command:/alt act Number, but having mixed results.

For Enchanter: In the dps section, he does just fine tashing everything using command:/alt act 2654, but does not ever cast a mez. I have it set up in the Mez section: MezSpell=command:/alt act 2648 and MezAESpell = command:/alt act 2649|4

For the cleric I have his heal set up: Heals1=command:/alt act 2563|50|MA
Heals2=command:/alt act 2763|70

The cleric does not heal anyone.

Is this possible to do?
Thanks!
 
Use the spell name. I specifically have 6 omm_enc (dru shm mag nec wiz) kiss profiles for this express purpose. I'm also in the midst of writing and automating the 3 OMM tasks with Levox. Gonna be a little bit before it's beta though. He's an example of my omm_shm.ini :
To be fair, the way I run the tasks, everybody only has a select couple of tasks. The wizard just mashes Ice comet and Rend, and sits down. the mage does a pet and shock of swords. the druid nukes with Ice (and considers healing), and does group sow. but treat them like spells.

INI:
[Buffs]
BuffsOn=1
BuffsSize=2
Buffs1=Cannibalize II|mana|88|50
Buffs2=Talisman of Altuna

[DPS]
DPSOn=1
DPSSize=1
DPSSkip=20
DPSInterval=1
DPS1=Blizzard Blast|97

[Heals]
HealsOn=1
HealsSize=1
Heals1=Greater Healing|75

[Pet]
PetOn=1
PetSpell=Frenzied Spirit
PetShrinkOn=0
PetShrinkSpell=Tiny Companion
PetBuffsOn=1
PetBuffsSize=1
PetBuffs1=Alacrity
 
This worked well for my cleric, but my enchanter is still not mezzing anything. Here is is ini:
INI:
[General]
KissAssistVer=11.005
Role=Assist
CampRadius=30
CampRadiusExceed=400
ReturnToCamp=0
ChaseAssist=0
ChaseDistance=10
MedOn=1
MedStart=99
MedCombat=0
LootOn=0
RezAcceptOn=1|90
AcceptInvitesOn=1
GroupWatchOn=0
GroupWatchCheck=FALSE
EQBCOn=0
DanNetOn=0
DanNetDelay=20
IRCOn=0
CampfireOn=0
CharInfo=Enchanter|50|GOLD
DPSMeter=1
ScatterOn=0
XTSlot=1
[Buffs]
BuffsOn=1
BuffsSize=2
Buffs1=Clarity
Buffs2=Swift Like the Wind|Melee
RebuffOn=1
CheckBuffsTimer=10

[Mez]
MezOn=1
MezRadius=50
MezMinLevel=20
MezMaxLevel=55
MezStopHPs=80
MezSpell=Dazzle
MezAESpell=Mesmerization|4
 
@TempusX , Do you have a working enchanter ini? The one I posted above does not buff everyone properly (only buffs 2 of the 6 characters with clarity) and does not mez anything.

@ctaylor22 yes, the mobs are between those levels
 
I have discovered that with the above profile, the enchanter will actually cast the AE mez: Mesmerisation once (never does it multiple times), but still never once trys Dazzle.
 
The only thing I can come up with is either the spell Dazzle is NOT memmed and/or Not in your book. If you can get me a Debug log of this happening I can take a closer look. PM me the log if your create one.
 
The only thing I can come up with is either the spell Dazzle is NOT memmed and/or Not in your book. If you can get me a Debug log of this happening I can take a closer look. PM me the log if your create one.
all of the abilities in the OMM missions are actually AAs, even if they are normally spells
 
In the 11.005 code there is nothing that checks if your using an AA or a Spell. So regardless the MezMobs routine will execute and it should throw a message, "MEZZING-> Mob Name Here <- ID:####". If your not seeing the message then you don't have the mob that needs to be mezzed targeted, this is not likely, or The MezMob routine is being skipped.
 
UNfortunately, no I don't have a chanter INI. When i manually run the tasks, I drive from the chanter, so theres no need for the file. I did have issues my first run with it not doing the mez routine though
 
I have discovered that with the above profile, the enchanter will actually cast the AE mez: Mesmerisation once (never does it multiple times), but still never once trys Dazzle.

I have just started to run the group missions today and I am having the exact same problem. Was a fix ever figured out for this and not posted? Any insight appreciated while I continue to try stuff. Mezz section of ini looks like this:

[Mez]
MezOn=1
MezRadius=50
MezMinLevel=35
MezMaxLevel=55
MezStopHPs=80
MezSpell=Dazzle
MezAESpell=Mesmerization|3
MezDebuffOnResist=0
MezDebuffSpell=Your Debuff Spell
 
It's because the AA for the spell "Mesmerization" and "Dazzle" (and some others) have a different spell ID than the ID for the spell in a non MM spellbook.

For example, the druid spell Pack Chloroplast, depending how you parse it, returns that it shares the same spell ID as Thunder Of Karana which is a vastly different spell. I've got.. a workaround in my macro for it somewhere, but i think it's a hardcoded solution.
Something like having to use /alt activate ${Me.AltAbility["Spell Name"].ID} to fire it from within the macro. I've got vars in place of the spell name, but the names are hardcoded in elsewhere.
 
${Me.Combat} && !${Me.TargetOfTarget.CleanName.Equal[${Me.CleanName}]} && ${Me.AbilityReady[Taunt]}

Hmm, the solution for this maybe above my pay grade. I am trying to think of a work around and Im stumped atm. May be easier to run a class other than an enchanter that cannot mezz. Maybe just add dps to kill the stuff faster or try a bard to mezz (need to see if they can mezz at 50, dont remember offhand). Will keep thinking on it and thanks for the info TempusX, at least I know why things are happening the way they are.
 
YEah man. I sat with Kaen and CWTN for a bit the other day with a similar issue in my macro for the OMM group tasks. once it runs through the task (semi properly) i'll post it and you can see what i ended up doing to cast mez.
 
YEah man. I sat with Kaen and CWTN for a bit the other day with a similar issue in my macro for the OMM group tasks. once it runs through the task (semi properly) i'll post it and you can see what i ended up doing to cast mez.

That would be great. If you end up sharing a macro that will do OMM I will just use that. Although it will be interesting to see how you got it to work. I have been trying stuff like:

command:/alt active 2649|100|Cond1
Cond1=${SpawnCount[npc radius 50]}>2

I put this in the AE section and the DPS section and I even got it to fire once but stopped working after that. I have just started to manually cast the AE mezz and then tab over and manually target and Dazzle mobs. A real pain but it works.
The bard wont mezz at that level. It will charm if you want to go that route but 50 is that bad spot where bards couldnt mezz level 50ish mobs.

Thanks for your input to my posts TempusX, AnotherJohn
 
That would be great. If you end up sharing a macro that will do OMM I will just use that. Although it will be interesting to see how you got it to work. I have been trying stuff like:

command:/alt active 2649|100|Cond1
Cond1=${SpawnCount[npc radius 50]}>2

I put this in the AE section and the DPS section and I even got it to fire once but stopped working after that. I have just started to manually cast the AE mezz and then tab over and manually target and Dazzle mobs. A real pain but it works.
The bard wont mezz at that level. It will charm if you want to go that route but 50 is that bad spot where bards couldnt mezz level 50ish mobs.

Thanks for your input to my posts TempusX, AnotherJohn
I'm literally field testing, and ironing bugs out of the OMM group macro right now. I don't have a mez routine in (yet) but will require it for a few places in solb and lower guk. Once I can solidify my waypoint/travels (buffing combat/healing/etc all work great), i'll be sharing it here on RG. I'm hoping to have a stable beta by the weekend.
 
I'm literally field testing, and ironing bugs out of the OMM group macro right now. I don't have a mez routine in (yet) but will require it for a few places in solb and lower guk. Once I can solidify my waypoint/travels (buffing combat/healing/etc all work great), i'll be sharing it here on RG. I'm hoping to have a stable beta by the weekend.

If you need some help testing , I'd be more than willing to offer help. Just let me know!
 
Question - OMM Group inis

Users who are viewing this thread

Back
Top
Cart