Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Capturing BDO Packets: A Step-by-step Tutorial

Joined
Sep 23, 2012
Messages
470
Reaction score
178
Now I will show you how to catch packets from an official European server, since many people do not know how to catch them or if there are problems with it.
Code:
1.Start WireShark.
2.Select your internet connection.
3.Using filter 
tcp.port == 8888 (only login packets)
tcp.port == 8889 (only game packets)
tcp.port == 8888 || tcp.port 8889 (login & game packets)
tcp.port == 8888 || tcp.port == 8889 || tcp.port == 9991 || tcp.port == 8884 (so I use)
4.Start Launcher and Enter him.
5.Start to game.
That's it, packs are ok and you can disassemble them. (If you only have a key)
 
Last edited:
Newbie Spellweaver
Joined
Apr 4, 2018
Messages
8
Reaction score
0
Possible for KR server? Really hoping everyone here could use latest KR client in their private server.
 
Initiate Mage
Joined
Jul 28, 2019
Messages
1
Reaction score
0
Are you refering to encryption key? Is there a current working method to disassemble and parse the TCP streams without injecting?
 
Newbie Spellweaver
Joined
Jan 8, 2010
Messages
13
Reaction score
0
can teach step by step how to get to 1 value / name?

example:
<Packet Opcode="0x0CCA" Name="SMLoginUserToFieldServer"/>

how to get to that result?
 
Back
Top