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

Monk And Rogue MAcro? (1 Viewer)

-=Ross=-

New member
Joined
Oct 29, 2006
RedCents
Hey,

Anyone happen to have either? i want them like the pally tank, where i pull the mob thay assist and just dps it down, dont need anything fancy ;p

thx
 
I have no idea where i got this one from, but it's a simple one. I may have got it from here... I have made small changes to it, some of which i took out, as they are zone specific, such as moving back to a /loc after a kill...

Rich (BB code):
| 
| BrokeBack Monk Version 1.1 
| Run this file by typing /mac monk mainassist 


#turbo 40 

Sub Main 
/declare gettarget bool outer 1 
/declare targetdead bool outer 1 
/declare targetid int outer 
/declare mainassist string outer 
/varset mainassist ${Param0} 
/echo there is no spoon 
/if (${Defined[Param0]}) { 
/echo My main assist is set to ${mainassist} 
} else { 
/echo This Macro needs a Main assist to run ... try /mac monk Tanksname .... case counts 
/end 
} 
/squelch /assist off 
:monkloop 
/if (${Me.AbilityReady[Forage]}) { 
   /squelch /stand 
   /doability Forage    
   /delay ${Math.Rand[3+1]}s 
   /autoinventory 
} 

/if (${gettarget}) { 
/call gettarg 
} 

/if (${targetid}==${Target.ID}) { 
/call killtarg 
}

/goto :monkloop 

Sub gettarg 
/echo Attempting to get a Target 
:getloop 
/doevents 
/delay ${Math.Rand[2+1]}s 
/squelch /assist ${mainassist} 
/if (${Target.Type.Equal["NPC"]} && ${Target.Distance}<70 && ${Target.PctHPs}<97) { 
/varset targetid ${Target.ID} 
/echo My target is now ${Target.CleanName} 
/varset gettarget 0 
/varset targetdead 0 
/return 
} else { 
/goto :getloop 
} 

Sub killtarg 
:killloop 
/doevents 
/if (${Me.AbilityReady["Flying Kick"]} && ${Target.Type.Equal["NPC"]}) { 
/doability "Flying Kick" 
} 
/if (${Me.PctHPs}<60 && ${Me.AbilityReady["Mend"]}) { 
/echo WTF asshole i am at ${Me.PctHPs} percent take better care of me 
/doability "Mend" 
} 
/if (${Me.CombatAbilityReady["Ashenhand Discipline"]} && ${Target.PctHPs}<95 && ${Target.PctHPs}>60 && ${Target.Type.Equal["NPC"]}) { 
/doability "Ashenhand Discipline" 
} 
/if (${Me.PctHPs}<30 && ${Me.CombatAbilityReady["Voiddance Discipline"]}) { 
/doability "Voiddance Discipline" 
} 
/if (${Me.PctHPs}<15) { 
/echo  i am at ${Me.PctHPs} percent and feigning death. you suck...chillin 
/doability "Feign Death" 
/delay 180s 
/stand 
/return 
} 
/if (${Target.Type.Equal["NPC"]}) { 
/stick 13 behind
/attack on 
/goto :killloop 
} else { 
/varset targetdead 1 
/varset gettarget 1 
/attack off 
/stick off
} 
/return
 
Monk And Rogue MAcro?

Users who are viewing this thread

Back
Top