From 1f2c14189bc029af3045de816290d3e488ee9c32 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Mon, 20 Aug 2012 11:59:22 +0000 Subject: Added support for the new monster purple hp bar packet (packetver >= 20120404), make sure to toggle /monsterhp in the client to show the bar. Special Thanks to EvilPuncker and scriptor for the packet structure git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16669 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/mob.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/map/mob.c') diff --git a/src/map/mob.c b/src/map/mob.c index 18b514616..14a520ab8 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2081,10 +2081,15 @@ void mob_damage(struct mob_data *md, struct block_list *src, int damage) if (battle_config.show_mob_info&3) clif_charnameack (0, &md->bl); - + if (!src) return; +#if PACKETVER >= 20120404 + if( src->type == BL_PC && !(md->status.mode&MD_BOSS) ) + clif_monster_hp_bar(md, ((TBL_PC*)src)->fd); +#endif + if( md->special_state.ai == 2 ) {//LOne WOlf explained that ANYONE can trigger the marine countdown skill. [Skotlex] md->state.alchemist = 1; mobskill_use(md, gettick(), MSC_ALCHEMIST); -- cgit v1.2.3-60-g2f50