Need an easy macro written rq please

TheTempest

New member
Joined
Jul 9, 2009
Messages
56
Reaction score
0
Points
0
Age
38
I want to box a ranger while playing a necro.

I want the ranger to auto assist, auto fire, and /face the mob.

I can get it working, but it SPAMS way too much about attacking a mob that doesn't exist, and attack on/off/on/off/on/off etc. So I need some sort of code that says "if" my assist has a target, then start doing the /face and /autofire.

Can anyone please help?

Here's what I have now:

Sub Main
:top
/assist name
/face
/autofire
/goto :top
 
Last edited:
Code:
#turbo 40


Sub Main

/declare MainAssist 	string 	outer 	${Target}

  :mainloop
       
    /assist ${MainAssist}
    /if (!${Target.ID}) /goto :mainloop
    /if (${Target.ID}) /call Attack
    /goto :mainloop

/return



Sub Attack

    /autofire on
    /face
    :loop
    /if (${Target.ID}) /goto :loop

/return

Its untested , and probably not the best it can be , but it should work
 
Last edited: