Finally someone is asking for a change in SRC that I (emm, could understand).
Please wait for my post!
Sorry, I can't help. I am confused with the language
src\map\intif.c line: 200~206
int intif_main_message(struct map_session_data* sd, const char* message)
{
char output[256];
nullpo_ret(sd);
// format the message for main broadcasting
snprintf( output, sizeof(output), msg_txt(386), sd->status.name, message );
// send the message using the inter-server broadcast service
intif_broadcast2( output, strlen(output) + 1, 0xFE000000, 0, 0, 0, 0 );
// log the chat message
log_chat( LOG_CHAT_MAINCHAT, 0, sd->status.char_id, sd->status.account_id, mapindex_id2name(sd->mapindex), sd->bl.x, sd->bl.y, NULL, message );
return 0;
}
I believe it's there.
oh wait,
msg_txt(386)
There's somewhere else