• 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

Cleric watching over a twink macro

Cpt_Cam

Member
Joined
Jul 30, 2005
RedCents
This is a very simple macro I wrote for when I do powerlevelling. I have 3 accounts and I want my cleric in the back watching for a % health and casting a certain heal spell. The way I've got it written you can port it over to any class really.

It also listens for a keyword and applies the cleric DS if you're druidless.
 
Would suggest just to be safe try and make it eqbc text so that doesnt give soe more proof if they wanted to nail ya on something
 
This macro still avail? I can't seem to download it
 
I think this what you mean by EQBC code?

Rich (BB code):
|#include move.inc
|#include spell_routines.inc
#chat tell
#chat group
Sub Main

/declare tank string outer "TANKNAME"
/declare healspell1 string outer "remedy"
/declare ds1 string outer "Mark of Retribution"
|-------------------------${tank}--------------------

:mainloop
/if (${Me.State.Equal[STAND]}) /sit 

/doevents
/call Checkhealth


/goto :mainloop

/return

 


sub Checkhealth

/delay 1s
/target pc ${tank}
/if (${Target.PctHPs}<=60)  {
		   /delay 1s
	/echo Healing ${tank} now
	/delay 1s
	/call cast "${healspell1}"
	 }


/return

 

Sub Event_Chat(ChatType, Sender, ChatText)

				 /if (${ChatText.Equal[dstarget]}) {

	   /target ${tank}
	   /delay 3s
	   /as
	   /delay 1s
	   /call cast ${ds1}
	   /delay 4s
	   /echo DS CAST
		  }

/return
 
Cleric watching over a twink macro

Users who are viewing this thread

Back
Top
Cart