• 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 --->

Ture Macro Help (1 Viewer)

xdrymartini

New member
Joined
Feb 2, 2006
RedCents
I adapted a macro fm Devlin, but if Wanton Destruction occurs while in one of the Sub Events, I don't see the message until the Sub Event is complete. How can I change this so I am aware w/ a popup and can automatically /gsay "Need a cure?"

Thank you.



Rich (BB code):
#Event TureRamp "#*#Ture roars with fury as it surveys its attackers#*#"
#Event TureOff "#*#Ture calms and regains its focus#*#"

|Ture.mac Adapted from other macros by Devlin.
|This Macro will announce to you what emotes are going off and what to do.

Sub Main

/echo LOADING TURE MACRO
/popup Ture Macro Loaded

:loop
  /doevents
  /if (${Me.Buff[Wanton Destruction].ID}) /popup WANTONLY DESTRUCTED!! GET A CURE FOOL!!
/goto :loop

-------------------------------------
Ture Rampage ON                                    
-------------------------------------
Sub Event_TureRamp
	/popup BACK OFF!
        /attack off
	/moveto loc 2968 575
/return

-------------------------------------
Ture Rampage OFF                                 
-------------------------------------
Sub Event_TureOff
        /popup GOGOGO!!
	/attack on
	/stick behind 15
/return
 
Rich (BB code):
#Event TureRamp "#*#Ture roars with fury as it surveys its attackers#*#"
#Event TureOff "#*#Ture calms and regains its focus#*#"

|Ture.mac Adapted from other macros by Devlin.
|This Macro will announce to you what emotes are going off and what to do.

Sub Main

/echo LOADING TURE MACRO
/popup Ture Macro Loaded

:loop
  /doevents
  /if (${Me.Buff[Wanton Destruction].ID}) /popup WANTONLY DESTRUCTED!! GET A CURE FOOL!!
/goto :loop

-------------------------------------
Ture Rampage ON                                    
-------------------------------------
Sub Event_TureRamp
	/popup BACK OFF!
        /attack off
/if (${Me.Buff[Wanton Destruction].ID}) /popup WANTONLY DESTRUCTED!! 
	/moveto loc 2968 575
/return

-------------------------------------
Ture Rampage OFF                                 
-------------------------------------
Sub Event_TureOff
        /popup GOGOGO!!
	/attack on
/if (${Me.Buff[Wanton Destruction].ID}) /popup WANTONLY DESTRUCTED!! 
	/stick behind 15
/return
 
Ture Macro Help

Users who are viewing this thread

Back
Top