Mind you it's based on the first word in a creature's name, so I'll have to fix it to include 2 words, though the macro can be edited with a [6] instead of a [5] for better specifying it's targeted critter. I'd figure out how to do more than one word at a time for Maha Slushpuppy, etc, but it's 3am, and I need sleep.
As a tip: it's Rat, not rat, or Feral, not feral.
Code: Select all
// type /trophy + first word in target creature's name to start counting how many you've killed.
//example /trophy Feral or /trophy Rat or /trophy Giant
//two-worded targets to come later
"/trophy"
{
set @env.key_interrupts "true"
set num 0
label top
pause 1
set LABEL @env.textLog.word[5]
set TARGET @text
set KILL @env.textLog
if LABEL < TARGET
set num + 1
pause 1
message num TARGET "(s) killed\r"
end if
goto top
}