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

need (1 Viewer)

See this kitten?
Dead_Kitten01.png


He's DEAD, cause YOU posted in the wrong forums.

Post all questions in the help, questions, and requests forum.

As for your question try this uber uber macro I just wrote:

INI:
Sub Main
:SuperDooperPooperLooper
/if (${Target.ID} && ${Target.Type.Equal[npc]}) {
      /echo I'm SUPER RANGER!
      /attack on
} Else {
      /attack off
}
/goto :SuperDooperPooperLooper
/return

oh and /kick thread to the proper forum
 
Untested try this:

Make sure you have your Main assist targeted when you start the macro

Wrote this with the idea that I don't want to /target /assist /target /assist once every second (sends commands to the server, spamming it isn't exactly smart)

Also no checks are added into this macro like zoning etc.

INI:
Sub Main
|=================================================
|===== CheckRadius: this checks for mobs within a certain radius of your MainTank
/declare CheckRadius int outer 40
|=================================================


|=================================================
|=================================================
|
| Don't screw with anything below here
|
|=================================================
|=================================================


/if (!{Target.ID} || ${Target.Type.NotEqual[pc]}) /call NONONO
/declare MainAssist int outer ${Target.ID}
/squelch /target clear
:MainLoop
/if (${Target.ID}!=${MainAssist} && ${Target.ID}) /squelch /target Clear
	/if (${Spawn[loc ${Spawn[${MainAssist].X} ${Spawn[${MainAssist].Y}} npc radius ${CheckRadius}].ID}) {
		/assist ${Spawn[${MainAssist}].CleanName}
		/if (${Target.Type.Equal[npc]}) /call ATTACK
}
/delay 2s
/goto :MainLoop
/return

Sub ATTACK
:waitloop
/delay 1
/if (${Target.PctHPs}>95) /goto :waitloop
/echo SUPER RANJA ATTACK!!!!
:attackloop
/attack on
/if (${Target.Distance}>15) /keypress up hold
/if (${Target.Distance}<15) /keypress up
/face fast
/delay 2
/if (${Target.ID} && ${Target.Type.Equal[npc]}) /goto :attackloop
/return

Sub NONONO
/echo Target the motherfucking main assist before starting this macro.
/endmac
/return
 
Last edited:
need

Users who are viewing this thread

Back
Top