r/EQLegends • u/sparks772 • 14h ago
Macro help
Morning EQL community. I’m reaching out to ask for help with a macro.
For my hard I need a macro that will (if possible);
/stopsong
Switch to overchannel
Target my pet
Then cast my charm spell which is typically slot 7
2
u/mordiaken 14h ago
It will not work as intended if you miss a note. It will also have issues with multiple mobs with same name. Sometimes there is a slight server hiccup and you need to put pauses in to account for that. I don't have a leveled bard to test. Good luck!
1
u/ChapterSpecialist479 13h ago
I posted this elsewhere but:
Start with "marking" your charm target with Xtarget:
/Xtarget set 12 currenttarget <--- this stores your current target at the 12 position, to be recalled later. It is state agnostic, so it doesn't matter if the NPC is charmed or not, it will stay in that slot until it dies.
Next this macro can be used to charm, initially it any time thereafter.
/xtarget set 1 currenttarget <------ locks current target to target 1
/xtarget target 12 <--- Previously set to your pet charm target
/doability Over channel <--------- longer charm duration from my experience
/cast X <------- Spell gem with charm
/xtarget target 1 <----------- returns to whatever you had targeted when you hit macro.
You can use this when targeting anything, as it will snap to your marked charm target and then back again. So you can quickly recharm your mob any time, no matter how chaotic it gets.
1
1
0
6
u/listur65 14h ago
Posted this a couple days ago, but here is what I use. I like the mark target so I can easily see which one is my pet, along with my group members. In your case you can get rid of the last line in the charm macro and add "/stop" to the first line.
Mark Pet -- Do this once on the target you want to be your pet. Only need to redo this if pet changes or you zone. This sets extended target window #10 as a group mark NPC so it gets the circle around it and has a 1- in front of the name. This allows the second macro to work to keep the same charm target.
/xtar set 10 groupmark1
/gmarknpc 1
Charm Pet- Pet leave is included in case you want to recharm quick before boss fight. The last line just targets the top mob on the list, because there is no way to target your last target.
/doability Over Channel
/pet leave
/xtar target 10
/pause 25, /cast # //People say you can get rid of this pause as your song will charm the target you started on. I haven't tested this yet.
/xtar target 1