From 8128ea20da0e15983309d3e053b9e11d102e6e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 4 Jun 2010 16:25:38 +0200 Subject: [PATCH] game: Add initial packet 1006 handling to character loading. --- src/egs_game.erl | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 0e70c11..caf0fd8 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -187,9 +187,10 @@ char_select_load(CSocket, GID, Version, Number) -> egs_proto:send_character_selected(CSocket, GID, Char, Options), % 0246 send_packet_0a0a(CSocket, GID), - % 1006 + send_packet_1006(CSocket, GID, 5), send_packet_1005(CSocket, GID, Char), - % 1006 0210 + send_packet_1006(CSocket, GID, 12), + % 0210 egs_proto:send_universe_info(CSocket, GID), egs_proto:send_player_card(CSocket, GID, Char), % 1501 1512 0303 @@ -882,6 +883,12 @@ send_packet_1005(CSocket, GID, Char) -> Packet = << 16#1005:16, 0:208, GID:32/little-unsigned-integer, 0:64, Before/binary, GID:32/little-unsigned-integer, 0:64, Name/binary, After/binary >>, egs_proto:packet_send(CSocket, Packet). +%% @todo Figure out what the packet is. + +send_packet_1006(CSocket, GID, N) -> + Packet = << 16#10060300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, N:32/little-unsigned-integer >>, + egs_proto:packet_send(CSocket, Packet). + %% @todo Figure out what the other things are and do it right. %% @todo Temporarily send 233 until the correct process is figured out. %% Should be something along the lines of 203 201 204.