diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-17 15:38:07 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-25 18:03:59 +0530 |
commit | eb0d0dc677e1d3e584de9202d3140fe6fb6db722 (patch) | |
tree | c8786013d81d15649fe0ab5f531bf5a559535d21 /src/map/mob.c | |
parent | 8e77c3459e87df92309afe25d25539e6684e2dda (diff) | |
download | hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.gz hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.bz2 hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.tar.xz hercules-eb0d0dc677e1d3e584de9202d3140fe6fb6db722.zip |
New Entity Packets Implemented (Thanks to Rytech)
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 0d6055b13..22b1266dd 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2068,11 +2068,17 @@ 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 PACKETVER >= 20131223 + // Resend ZC_NOTIFY_MOVEENTRY to Update the HP + if (battle_config.show_monster_hp_bar) + clif->set_unit_walking(&md->bl, NULL, unit->bl2ud(&md->bl), AREA); +#endif if (!src) return; -#if PACKETVER >= 20120404 +#if (PACKETVER >= 20120404 && PACKETVER < 20131223) if (battle_config.show_monster_hp_bar && !(md->status.mode&MD_BOSS)) { int i; for(i = 0; i < DAMAGELOG_SIZE; i++){ // must show hp bar to all char who already hit the mob. @@ -2813,8 +2819,13 @@ void mob_heal(struct mob_data *md, unsigned int heal) { if (battle_config.show_mob_info&3) clif->charnameack (0, &md->bl); +#if PACKETVER >= 20131223 + // Resend ZC_NOTIFY_MOVEENTRY to Update the HP + if (battle_config.show_monster_hp_bar) + clif->set_unit_walking(&md->bl, NULL, unit->bl2ud(&md->bl), AREA); +#endif -#if PACKETVER >= 20120404 +#if (PACKETVER >= 20120404 && PACKETVER < 20131223) if (battle_config.show_monster_hp_bar && !(md->status.mode&MD_BOSS)) { int i; for(i = 0; i < DAMAGELOG_SIZE; i++){ // must show hp bar to all char who already hit the mob. |