Need a hand

Status
Not open for further replies.

Kackemel

New member
Joined
Sep 29, 2006
Messages
1
Reaction score
0
Points
1
I'v been working on a mac to run the naggy mm with 3-4 toons. It runs fine but I'm haveing a problem trying to fully automate it. Right now its two macs, one for naggy that fights, stays at anchor and spams its ae. The other mac just heals naggy. I'm asking if anyone can help me make it loot at end, get a new task, zone in, and load the aa's for the naggy toon.
-----------------------------------------------------------------------------
Naggy.mac
Code:
#turbo 40
Sub Main
/echo Its on! gogo naggo
:killloop     
 /if (${Me.AltAbilityReady["Lava Breath"]} && !${Me.Casting.ID} ) {
         /aa act Lava Breath
/moveto loc -1386 -820
/delay 4s
 /echo Firing AE and moveing to anchor    
}
/squelch /face nolook
/attack on
/delay 3s
/goto :killloop

/return
-------------------------------------------------------------------------
Healnag.mac
Code:
#turbo

Sub Main
/echo healmac is on
:loop
/if (${Me.Casting.ID}) /goto :loop
/targ Whoevernaggyis
/if (${Target.PctHPs}<70) {
/goto :heal
} else {
/goto :loop
}


:heal
/aa act Perfect Heal
}

/goto :loop
--------------------------------------------------------------------------
Any advice appreciated
 
Last edited by a moderator:
So these two mac's when run right now will win the mission ?

You just manually have to loot at the end ?

I don't know how to write up what you need, but you should take a look at Fry and Booges LSMM macro and see if you can't incorporate the code they use to loot the shard and re-request the mission in there. LSMM used to run very solid and do everything you are asking.
 
Status
Not open for further replies.