[HELP] Habbo Handshake Packet Programming

Newbie Spellweaver
Joined
Dec 22, 2007
Messages
31
Reaction score
7
Today I began developing my v18 Habbo Emulator in C#, and have gotten to the point of handling the handshake protocol. The first message is, of course @@[1] ([1] meaning hex value 01). I am using Bloodline as a test server to compare packets. The welcome packet is responded to by the client with @@BCN, while the exact same packet coming from my server is not responded to by the client.

Here is my WPE Pro Packet log showing the response with Bloodline and no response with my server (Jaguar):

zgillis - [HELP] Habbo Handshake Packet Programming - RaGEZONE Forums


And here is my source file for sending this packet:
zgillis - [HELP] Habbo Handshake Packet Programming - RaGEZONE Forums
 
I was already sending that welcome message. Then I tried @@ without a chr(1) at the end, and there is still no response from the client.
 
Back