Jump to content
  • 0
Sign in to follow this  
THPO

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

Question

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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

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