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

THPO

New member
Messages
103
Points
0
Emulator
Hi anyone can tell me how to remove the Monster's HP pink bar?

any help would be appreciated greatly..

default_smile.png


 
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.

 
Last edited by a moderator:
Thanks kisukaI'll give it a shot
default_smile.png
appreciate your help

Have a nice day a head
default_smile.png


 
Last edited by a moderator:
Back
Top