[Question] What Packet to send?

08/05/2009 19:15 Kital82#1
Hello.
I'm in trouble because I don't know what packet to send when I have created a Character.
I tried to send this MessagePacket:
Quote:
Client.Send(Packets.Chat(0, "SYSTEM", "ALLUSERS", "Characted created! Please log into the server.", ChatType.Dialog));
The message appears but don't bring you to the main menu of the client to log into my server
08/05/2009 19:21 damianpesta#2
Quote:
Originally Posted by Kital82 View Post
Hello.
I'm in trouble because I don't know what packet to send when I have created a Character.
I tried to send this MessagePacket:

The message appears but don't bring you to the main menu of the client to log into my server
I think the packet for it is 2101 .. not sure check it out if it works.
08/05/2009 19:32 _tao4229_#3
send ANSWER_OK again, the client will hang for a few seconds(it seriously waits on purpose) then say the character created message for you.
08/05/2009 20:12 PeTe Ninja#4
Who awesome,


i have a problem myself, when i press Ctrl+F the thing doesnt show up. Please help
08/05/2009 20:37 Kital82#5
Hmmm, nothing is happening when i send "ANSWER_OK". It's freezing.
Are you sure that the ChatType is 2101?
08/05/2009 20:41 _tao4229_#6
MessagePacket Message = new MessagePacket("ANSWER_OK", 0x834);
0x834 = 2100
08/05/2009 20:46 Kital82#7
I was trying with 2100 when I saw your post and worked!
Btw thank you for the help tao :)