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

Adding a follow (1 Viewer)

pythag1

New member
Joined
Jan 11, 2010
RedCents
25¢
Hi, I have a simple heal mac where i want to add a start follow and then an end follow by using tells - any snippets I can add in? (its an old one but easy to alter and use and pulled it from a site years ago)
#turbo

#include Spell_routines.inc

#event Rebuff "#*#time to rebuff#*#"
|#event Follow "#*#dude follow me#*#"
|#event Endfollow "#*#lets stop here#*#"

Sub Main

:loop
/if (${Me.Casting.ID}) /goto :loop
/doevents
/target pc
/if (${Target.PctHPs}<60) {
/goto :heal
} else {
/goto :loop
}


:heal
/call cast "Superior Healing"
/if (${Me.Standing} && !${Me.Mount.ID}) /sit
}

/goto :loop

Sub Event_Rebuff
/target pc
/call cast "Storm Strength"
/call cast "Shield of Thorns" gem4 8s
/target myself
/call cast "Shield of Thorns" gem4 12s
/return

Thanks
 
Try this but the targeting will only work with tells

Rich (BB code):
Sub Event_Follow
	/target pc ${MacroQuest.LastTell}
	/delay 10
	/stick 20 
/return
 
Sub Event_EndFollow
	/stick off
/return
 
Last edited:
Adding a follow

Users who are viewing this thread

Back
Top