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

Looking for Help with a Little Macro for any class (1 Viewer)

ss44

Active member
Joined
Sep 13, 2005
RedCents
31¢
Hey guys. I have been trying to write a macro for any class, but have had no luck with it. and i dont know why. All i want it to do is assist the main assist, move behind mob, stick to it and attack. it doesnt sound that hard but im having all kinds of trouble with it. any help would be appreciated. thanks
 
well the reason i want it in a mac, rather than a hotkey is so that it will move itself behind the mob...Thanks for the input tho :)
 
As many macros that I have fixed and written, this is by far the most simple. But I cannot get it to work at all. I had it working a couple patches ago, but now I cant. This is what I had working.
Rich (BB code):
#turbo
#event toofar "#*#Your target is too far away, get closer!#*#"
#event mobdied "#*#You gain party experience!!#*#"

Sub Main
	/assist
	/delay 10
	/call twist
	 /delay 2s
	/face 
	 /attack on
	:movementloop
	/if (${Int[${Target.Distance}]}>13) { 
	 /keypress forward 
 } 
	 /if (${Int[${Target.Distance}]}<13&&${Int[${Target.Distance}]}>11) { 
	 /keypress forward 
 } 
	 /if (${Int[${Target.Distance}]}<9) { 
	 /keypress back 
 } 
	 /if (${Int[${Target.Distance}]}>13) { 
 	/keypress forward 
 } 
	/stick on
	/goto :movementloop
/return

Sub Twist
	/twist 2 3 4 5
/return

Sub event_toofar
	/call main
/return

But now, it doesnt work at all. I even tried changing
Rich (BB code):
/if (${Int[${Target.Distance}]}>13) { 
	 /keypress forward 
 }

back to

Rich (BB code):
/if (${Int[${Target.Distance}]}>13) { 
	 /keypress forward hold
 }
but it would start running and would not stop. if anyone knows, please enlighten me. thanks
 
Looking for Help with a Little Macro for any class

Users who are viewing this thread

Back
Top