diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 7 | ||||
-rw-r--r-- | src/map/clif.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 7275ede90..05e71fe19 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -4550,13 +4550,18 @@ void clif_MainChatMessage(const char* message) *------------------------------------------*/ int clif_announce(struct block_list* bl, const char* mes, int len, unsigned long color, int flag) { + return clif_announce_ex(bl, mes, len, color, flag, 12); +} + +int clif_announce_ex(struct block_list* bl, const char* mes, int len, unsigned long color, int flag, int size) +{ unsigned char *buf; buf = (unsigned char*)aMallocA((len + 16)*sizeof(unsigned char)); WBUFW(buf,0) = 0x1c3; WBUFW(buf,2) = len + 16; WBUFL(buf,4) = color; WBUFW(buf,8) = 0x190; //Font style? Type? - WBUFW(buf,10) = 0x0c; //12? Font size? + WBUFW(buf,10) = size; // Font size WBUFL(buf,12) = 0; //Unknown! memcpy(WBUFP(buf,16), mes, len); diff --git a/src/map/clif.h b/src/map/clif.h index 4ce69e4da..acc336dc2 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -339,6 +339,7 @@ void clif_disp_message(struct block_list* src, const char* mes, int len, enum se int clif_GMmessage(struct block_list* bl, const char* mes, int len, int flag); void clif_MainChatMessage(const char* message); //luzza int clif_announce(struct block_list *bl, const char* mes, int len, unsigned long color, int flag); +int clif_announce_ex(struct block_list *bl, const char* mes, int len, unsigned long color, int flag, int size); int clif_heal(int fd,int type,int val); int clif_resurrection(struct block_list *bl,int type); void clif_set0199(struct map_session_data* sd, int mode); |