Removing (Not hiding) these chats in my client

ippo20

New member
Messages
25
Points
0
Github
ippo20
Emulator
Hi, 

We are on a server that requires constant warping. Boss hunts here and there. The problem is that players are not able to communicate with each other when these are showing up. They can split the chat or configure it to not show in the main chat, but I promised them old school RO. Any way I could do this?

image.png

 
hi, can disable this messages when change maps...

1 - go to emulator/conf/map/battle/client.conf

go to end file, then add this:

Code:
// At each map exchange, two messages are sent in the chat
// Changing this setting to 'no' will prevent both messages from being sent
// Default: yes
annoying_mapchange_messages: yes


2 - On Source src/map/battle.c +/- on line 7452 add this:

Code:
{ "annoying_mapchange_messages",        &battle_config.annoying_mapchange_messages,      1,      0,      1,                },


3 - On Source src/map/battle.h search for "int autoloot_adjust;" then add after:

Code:
int annoying_mapchange_messages;





4 - On Source src/map/clif.c search for "if( sd->state.changemap ) {" then add after:

Code:
if (battle_config.annoying_mapchange_messages) {
and after "#endif" close brackets } like this:
 

Code:
if (battle_config.annoying_mapchange_messages) {
 #if PACKETVER >= 20070918
         clif_partyinvitationstate(sd);
         clif_equipcheckbox(sd);
 #endif

}


Credits to "Dani" from brAthena.

 
Last edited by a moderator:
Hi @HD Scripts, thank you for this, any idea how to remove the Homonculus auto feed message as well, and also the @Warp  "warped" message?

 
1 - to desactive message "warped" can comment line on messages.conf on folder conf of emulator.

Code:
//0: Warped.


2 - to desactive message homunculus auto feed, can add this lines on homunc.conf on battle folder of emulator.

Code:
// Send auto-feed notice even if OFF (Note 1) 
// Official: yes
homunculus_autofeed_always: no
 
Last edited by a moderator:
Back
Top