• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

snippets I added to my tank macro (1 Viewer)

Donnavan2005

New member
Joined
May 30, 2005
RedCents
I need someone to check these snippets of a macro I added to my sk tank macro and see if I am doing this right. I recently got a wavecrasher and want to start with wavecrasher (have exchange line to make sure it is in)

now I am adding the event to my macro to switch out my wavecrasher when it procs.


#Event Slowed "is slowed by the mist"


and this is my sub


|--------------------------------------------------------------------
|SUB: Slowed
|--------------------------------------------------------------------
Sub Slowed
/echo Slowed! Time to kick some ass!
/exchange "Blade of Disruption" mainhand
/delay 1s
/return


Did I do this right?
 
Rich (BB code):
#Event Slowed "is slowed by the mist"


|--------------------------------------------------------------------
|SUB: Slowed
|--------------------------------------------------------------------
Sub Event_Slowed
/echo Slowed! Time to kick some ass!
/exchange "Blade of Disruption" mainhand
/delay 1s
/return

-SimpleMynd
 
it looks good to be although little changes will keep things from not working correctly. I do not know how the switch plugin works but it seems you have it correct. Below are the little changes I made.
Rich (BB code):
#event slowed "is slowed by the mist.#*#"

Sub slowed
/echo %T slowed, lets beat it down!
/doevents
/exchange "Blade of Disruption" mainhand
/doevents
/delay 25
/return
 
if you try my code and it doesnt work for some reason, change the event to;
Rich (BB code):
#event slowed "#*#has been slowed by the mist.#*#"
 
snippets I added to my tank macro

Users who are viewing this thread

Back
Top