Jump to content
  • 1

Numbers in Regular Chat


Giant Whisper

Question


  • Group:  Members
  • Topic Count:  55
  • Topics Per Day:  0.01
  • Content Count:  190
  • Reputation:   3
  • Joined:  04/11/12
  • Last Seen:  

Hi, What should I do to avoid these numbers? client 2016-03-02

 

813.GIF.21908b0a8ef9a801a67c1b564d232759.GIF

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  8
  • Reputation:   0
  • Joined:  05/01/18
  • Last Seen:  

Hey, so I got this issue too, and would like to know how to fix it. The client I am using is 20170517

I tried a 20161228 client, a 20170517 and a 20170614 one. Recompiled my personal test server using './configure --enable-packetver=<client version> --enable-prere=yes' (on CentOS 7 using devtools-7).


I've found outa Client diff for 20151104 clients exists, but I don't know how to modify that to a more current one.

Running latest master branches on rAthena and running 'git pull' on a regular basis on test server. However no fix has been found yet (at least by me). I found out on my live server the numbers have a different notation than on my test server currently. I tried using Wireshark for valuable output, but I couldn't find anything of use. (Could be my incompetence using Wireshark though). I did find out that it's the ZC_ACK_WHISPER02 packet which is defined in 'src/map/clif.cpp' with the following code:

void clif_wis_end(int fd, int result)
{
	struct map_session_data *sd = (session_isValid(fd) ? (struct map_session_data *)session[fd]->session_data : NULL);
#if PACKETVER < 20131223
	const int cmd = 0x98;
#else
	const int cmd = 0x9df;
#endif

	if (!sd)
		return;

	WFIFOHEAD(fd,packet_len(cmd));
	WFIFOW(fd,0) = cmd;
	WFIFOB(fd,2) = (char)result;
#if PACKETVER >= 20131223
	WFIFOL(fd,3) = sd->status.char_id;	// GID/CCODE
#endif
	WFIFOSET(fd,packet_len(cmd));
}

If anyone could elaborate on this issue, please do.


Thanks in advance,
Kevin

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  39
  • Reputation:   0
  • Joined:  05/05/17
  • Last Seen:  

bump

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...