Jump to content

  •  

dow

Member Since 16 Feb 2015
Offline Last Active Aug 23 2015 02:46 PM
-----

Topics I've Started

Overhead

23 August 2015 - 11:33 AM

Please can you help me to edit this part of source code ?

Only player who have clic on NPC can see the message.

thx a lot !

/// Public chat message (ZC_NOTIFY_CHAT). lordalfa/Skotlex - used by @me as well/// 008d <packet len>.W <id>.L <message>.?Bvoid clif_disp_overhead(struct block_list *bl, const char* mes){	unsigned char buf[256]; //This should be more than sufficient, the theoretical max is CHAT_SIZE + 8 (pads and extra inserted crap)	size_t len_mes = strlen(mes)+1; //Account for 0	if (len_mes > sizeof(buf)-8) {		ShowError("clif_disp_overhead: Message too long (length %"PRIuS")n", len_mes);		len_mes = sizeof(buf)-8; //Trunk it to avoid problems.	}	// send message to others	WBUFW(buf,0) = 0x8d;	WBUFW(buf,2) = len_mes + 8; // len of message + 8 (command+len+id)	WBUFL(buf,4) = bl->id;	safestrncpy((char*)WBUFP(buf,8), mes, len_mes);	clif->send(buf, WBUFW(buf,2), bl, AREA_CHAT_WOC);	// send back message to the speaker	if( bl->type == BL_PC ) {		WBUFW(buf,0) = 0x8e;		WBUFW(buf, 2) = len_mes + 4;		safestrncpy((char*)WBUFP(buf,4), mes, len_mes);		clif->send(buf, WBUFW(buf,2), bl, SELF);	}} 

 


Error on Load script

21 February 2015 - 11:16 AM

Hi i've a problem, and i don't know why i have this error :/

 

(02/21/2015 12:14:27) [ Error ] : npc_parsesrcfile: Unknown syntax in file 'npc/06Mapflag/106Fichieracharger.conf', line '3'. Stopping... * w1=npc: npc/Mapflag/nopvp.txt

But... i don't know why i've this error !!!
have you idea ?

THX