New Packet found

10/06/2014 20:48 Jocchemm#1
Dear Epvp,

I am trying to make a C3 Nexon server and everything works except the launcher. When I run the servers and click the launcher the console tells me a new packet ID is found, and the launcher (nexon) says nothing. When I turn my server down and I run the launcher they say cannot get a file. What should I do?
[Only registered and activated users can see links. Click Here To Register...]
10/06/2014 20:54 Cyno™#2
How about implementing the launcher Version check packet?
10/06/2014 21:02 Sleutel#3
Bro, you haven't been the first guy who has encountered this problem.
Cyno said what you should do. It's one of the easiest packets to get.

I wish you good luck implementing it.
10/06/2014 22:02 AmazingTurtle#4
It's the version info packet. If you google for a list of packet ids, you would find that out yourself. But nah - newbies always spam with dumb problems D:
10/07/2014 00:11 toxiicdev#5
newPacket(4112);
addBlock(Configs.Patch.Format); // Format
addBlock(Configs.Patch.Launcher); // Launcher Version
addBlock(Configs.Patch.Updater); // Updater Version
addBlock(Configs.Patch.Client); // Client Version
addBlock(Configs.Patch.Sub); // Sub Version
addBlock(Configs.Patch.Option); // Option
addBlock(Configs.Patch.UpdateUrl);

Here you go :P
10/07/2014 17:40 Frankfurt1337#6
Quote:
Originally Posted by Cyno™ View Post
How about implementing the launcher Version check packet?
He isn't able to do that.
10/07/2014 17:43 Jocchemm#7
Quote:
Originally Posted by AmazingTurtle View Post
It's the version info packet. If you google for a list of packet ids, you would find that out yourself. But nah - newbies always spam with dumb problems D:
Once, you also was a newbie :)

Question... Where do I have to save the packet? And does someone have a .cs file for me?