• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTClient Unknown message node 46

ralke

(҂ ͠❛ ෴ ͡❛)ᕤ
Joined
Dec 17, 2011
Messages
1,492
Solutions
27
Reaction score
858
Location
Santiago - Chile
GitHub
ralke23
Twitch
ralke23
Hi there! I'm using Mehah's OTClient for my 8.60 server (based on TFS 1.5 downgrades 8.6 by Nekiro). The problem is that this error is shown on otclient.log, and I can't identify why it appears or how to trigger it. Any ideas? Any help will be appreciated really!

Code:
ERROR: ProtocolGame parse message exception (310 bytes unread, last opcode is 170, prev opcode is 131): unknown message mode 46
ERROR: ProtocolGame parse message exception (294 bytes unread, last opcode is 170, prev opcode is 131): unknown message mode 46
ERROR: ProtocolGame parse message exception (310 bytes unread, last opcode is 170, prev opcode is 131): unknown message mode 46
ERROR: ProtocolGame parse message exception (298 bytes unread, last opcode is 170, prev opcode is 131): unknown message mode 46

Thanks in advance!
 
Last opcode was 170 (0xAA)

Look inside protocolgame functions:
Code:
sendChannelMessage

sendToChannel

sendCreatureSay

sendPrivateMessage

maybe something miss in the downgrade.
 
Last opcode was 170 (0xAA)

Look inside protocolgame functions:
Code:
sendChannelMessage

sendToChannel

sendCreatureSay

sendPrivateMessage

maybe something miss in the downgrade.

For what I see there's msg.addByte(0xAA) on sendChannelMessage, sendToChannel and sendPrivateMessage.
Here's my file
Greed-TFS-1.5-Downgrades/protocolgame.cpp at 8.60 · ralke23/Greed-TFS-1.5-Downgrades (https://github.com/ralke23/Greed-TFS-1.5-Downgrades/blob/8.60/src/protocolgame.cpp#L1284)

Which ways I should test specifically?, and what could be changed to make it work?
Thanks a lot for responding, Regards!
 
Back
Top