• 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

Vishimitar Macro

everdead

Member
Joined
Feb 21, 2006
RedCents
So I am tired of this bitch and having to rely on watching the screen constantly. This macro will simply check if got the debuff. Target mournful spirit and do the hail text and should get you cured. You will need to have MQ2Hail to use this as I am using /saytarget because I am main tank and not gonna bother with moveutils useage to them.

Am testing it in a day or two on the bastard again for a real test run and will let you all know if it isn't working properly.

Rich (BB code):
| ------------------------------------------- |
| Everdead's I HATE VISHIMITAR Macro of cures |
| you will need MQ2Hail plugin for this macro |
| ------------------------------------------- |

| ##### Main Part of Macro
Sub Main
:Main
/doevents
/if (${Me.Buff[Creeping Doom].ID}) /call Cure
/goto :Main
/return

| ##### Cures shit
Sub Cure
/beep
/tar npc mournful
/delay 2
/saytarget Shoulder my burden
/delay 2
/return
 
Last edited:
Might want to add a check to see if you have a mournful spirit targetted or not. Sometimes there aren't any up and if that happens when you get creeping doom, you might end up spamming "shoulder my burden" until you get one targetted.

Rich (BB code):
| ##### Cures shit
Sub Cure
/beep
:mournful
/tar npc mournful
/delay 4
/if (${Target.CleanName.NotEqual[mournful spirit]}) /goto :mournful
/delay 4
/saytarget Shoulder my burden
/delay 4
/return
Check and make sure that's right as I just got off work and I'm tired as crap so I could have messed up. Name of the mob might be wrong, been a while since I've done it.

plink
 
saytarget requires a mob to be on target to work. So the call would basicaly be in the plugin. I just go for the cleanest I could get on this one.

Edit: Though I suppose when I am main tanking I might spam vish so may change the code. NPC cleanname is a mournful spirit I think. Will check tonight.
 
Yeah, but his loop would prevent you from just not having this work...even if you were switching targets...and have it keep looping until you made it. Me personally, I'd lower those delays down to like 1 or 2, just because it gets it done faster and you have more time with the mob and less time with a bunch of clerics wondering why you're targeting the dot curer.
 
Vishimitar Macro

Users who are viewing this thread

Back
Top
Cart