this will announce all weapons and armors dropped by MVPs.(excludes those in MVP drop field)
Index: map/mob.c
===================================================================
--- map/mob.c (revision 16608)
+++ map/mob.c (working copy)
@@ -2406,6 +2406,12 @@
//MSG: "'%s' won %s's %s (chance: %0.02f%%)"
intif_broadcast(message,strlen(message)+1,0);
}
+ if(mvp_sd && md->db->mexp && (it->type == IT_ARMOR || it->type == IT_WEAPON)){
+ char message[128];
+ sprintf (message, msg_txt(541), mvp_sd->status.name, md->name, it->jname, (float)drop_rate/100);
+ //MSG: "'%s' won %s's %s (chance: %0.02f%%)"
+ intif_broadcast(message,strlen(message)+1,0);
+ }
// Announce first, or else ditem will be freed. [Lance]
// By popular demand, use base drop rate for autoloot code. [skotlex]
mob_item_drop(md, dlist, ditem, 0, md->db->dropitem[i].p, homkillonly);