Plugin: MQ2Vish

WOW bumping an old post like this?

This is the old style warp packet structure. It will not work.
 
You are better off with a macro version or add an Event in your macro to

/target a_mourn npc
/saytarget shoulder my burden

something along those lines.

Do a search on it, I do believe it has been created or parts of it has.
 
It's a pretty simple plugin, it will essentially "/saytarget" whatever to the spirits for a cure. You can easily turn this into a macro.
 
Well unfortunatly I dont know how to write macs. Ill keep looking around i guess.
 
I think it'd look something like this. I used used /sayt instead of actually running to the spirit, so be careful who you're using this around if that matters. It will require MQ2ReachIt to use the /sayt command.

Code:
| Vish.mac

#Event DT "You sense your doom approaching."

Sub Main
 :loop
 /doevents
 /goto :loop
/return

Sub Event_DT
 /echo DT detected! Attempting to cure!
 :target
 /tar npc mournful
 /sayt shoulder my burden
 /delay 1s
 /if (${Me.Buff[Creeping Doom].ID}) /goto :target
 /echo DT successfully cured!
/return
 
Ah like reliving my childhood again. Thanks for bumping. I remember those fun days of Vish. I think in the end a macro worked the best.