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

Question - mob kill count (1 Viewer)

Joined
Jan 25, 2016
RedCents
104¢
I dudes

I want to be able to count how many mobs i have killed from the time i start the mq2 to when i finish. Is there some kind of plugin or a command in mq2 that can give me that information? just want to keep tabs on how many mobs i kill in between looting ultra rares in EOK

cheers
 
Pretty sure this will work for you. It will track each kill and echo it. Would be pretty easy to include a simple /bc command to report the current counter if you wanted as well. This was just quick an dirty to try and get you something to start with.

Just copy/paste the code into a file named whatever you want, (Counter.mac for example), then run it. Alternatively, you could put the #event lines, /declare line, and Sub Event section in a macro you already have and it'll still work.

Good luck!

Rich (BB code):
#turbo 40
#event MobDead     "#*#You have slain#*#" 
#event MobDead     "#*#has been slain by#*#"

Sub Main

	/declare     counter     int     outer     0
	
:Start
	/doevents
	/delay 3
/goto :Start
/return

Sub Event_MobDead
	/next counter
	/delay 3
	/echo Mobs Killed: ${counter}
/return
 
Question - mob kill count

Users who are viewing this thread

Back
Top