Currently Posted January 1, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Share Posted January 1, 2013 Remove HP bar on Emperiums only. Quote Link to comment Share on other sites More sharing options...
0 Ajjwidjdneidjenw Posted January 1, 2013 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 161 Reputation: 31 Joined: 12/06/11 Last Seen: December 25, 2022 Share Posted January 1, 2013 (edited) That's actually source mod. Anyway change: Mob.c #if PACKETVER >= 20120404 if( !(md->status.mode&MDBOSS) ){ int i; for(i = 0; i < DAMAGELOG_SIZE; i++){ // must show hp bar to all char who already hit the mob. struct map_session_data *sd = map_charid2sd(md->dmglog[i].id); if( sd && check_distance_bl(&md->bl, &sd->bl, AREA_SIZE) ) // check if in range clif_monster_hp_bar(md, sd->fd); } } #endif to #if PACKETVER >= 20120404 if( !(md->class_ == MOBID_EMPERIUM) ){ int i; for(i = 0; i < DAMAGELOG_SIZE; i++){ // must show hp bar to all char who already hit the mob. struct map_session_data *sd = map_charid2sd(md->dmglog[i].id); if( sd && check_distance_bl(&md->bl, &sd->bl, AREA_SIZE) ) // check if in range clif_monster_hp_bar(md, sd->fd); } } #endif Edited January 1, 2013 by Jeroen Quote Link to comment Share on other sites More sharing options...
0 RedMonkey Posted May 5, 2017 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 87 Reputation: 2 Joined: 03/30/16 Last Seen: May 18, 2024 Share Posted May 5, 2017 This is not working. Quote Link to comment Share on other sites More sharing options...
Emistry Posted January 1, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 10 hours ago Share Posted January 1, 2013 if above trick is working....then you should do like this... if( !(md->status.mode&MDBOSS) && !(md->class_ == MOBID_EMPERIUM) ){ otherwise the boss monster will show an HP bar too.. Quote Link to comment Share on other sites More sharing options...
Ajjwidjdneidjenw Posted January 1, 2013 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 161 Reputation: 31 Joined: 12/06/11 Last Seen: December 25, 2022 Share Posted January 1, 2013 Emistry " Remove HP bar on Emperiums only " The way I get it, is that he wants to have the HP bare removed soly on Emperiums Quote Link to comment Share on other sites More sharing options...
Question
Currently
Remove HP bar on Emperiums only.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.