Jump to content
  • 0
Sign in to follow this  
THPO

2013-06-05 need help to remove Monsters HP Pink Bar?

Question

Hi anyone can tell me how to remove the Monster's HP pink bar?

 

any help would be appreciated greatly..

:)

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

I could be wrong about this, currently don't have access to development environment so I'm just going on a whim here but...

 

in src/map/clif.c on line 17543, comment it out. This will cause the server to not send the Monster HP packet to the client.

 

Would look like this:

void clif_monster_hp_bar( struct mob_data* md, struct map_session_data *sd ) {	struct packet_monster_hp p;	p.PacketType = monsterhpType;	p.GID = md->bl.id;	p.HP = md->status.hp;	p.MaxHP = md->status.max_hp;	//clif->send(&p,sizeof(p),&sd->bl,SELF);}
You could also make a HPM plugin that makes clif_monster_hp_bar empty.

 

If you want to be a bit cleaner with this, comment out any occurrences of clif->monster_hp_bar in mob.c that way it's not calling clif_monster_hp_bar to send the packet anymore.

 

Though again, I could be wrong about this, but feel free to give it a shot. If it doesn't work, it might need to do some form of client hexing to remove it.

Share this post


Link to post
Share on other sites
  • 0

Thanks kisukaI'll give it a shot :) appreciate your help

Have a nice day a head :)

Edited by THPO

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.