From 7415da1c8987163802715c58d14da8184a96a1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 21:32:35 +0100 Subject: [PATCH] psu_proto: Move send_1207 to psu_proto without reviewing it. --- src/egs_game.erl | 2 +- src/psu/psu_game.erl | 5 ----- src/psu/psu_proto.erl | 7 +++++++ 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 76e012c..3ff6f23 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -271,7 +271,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, Client=#cl psu_proto:send_1202(), psu_proto:send_1204(Client2), psu_proto:send_1206(Client2), - psu_game:send_1207(), + psu_proto:send_1207(Client2), psu_game:send_1212(), psu_proto:send_0201(User, Client2), psu_proto:send_0a06(User, Client2), diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 4ffdb30..2febdb5 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -337,11 +337,6 @@ send_1016(PartyPos) -> GID = get(gid), send(<< 16#10160300:32, 16#ffff0000:32, 0:128, 16#00011300:32, GID:32/little, 0:64, PartyPos:32/little >>). -%% @todo Figure out what this packet does. Sane values for counter and missions for now. -send_1207() -> - Chunk = << 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 0:224, 16#0000ffff:32, 16#ff000000:32, 16#64000a00:32 >>, - send(<< (header(16#1207))/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary >>). - %% @todo Object interaction? Figure out. C probably the interaction type. %% @todo Apparently A would be TargetID/ffffffff, B would be the player LID, C would be the object type? D still completely unknown. send_1211(A, B, C, D) -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index d4cefcc..de4cd70 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1594,6 +1594,13 @@ send_1205(EventID, BlockID, Value, #client{socket=Socket, gid=DestGID}) -> send_1206(#client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#12060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:32, 16#80020000:32, 0:5120 >>). +%% @todo Figure out what this packet does. Sane values for counter and missions for now. +%% @todo This packet hasn't been reviewed at all yet. +send_1207(#client{socket=Socket, gid=DestGID}) -> + Chunk = << 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 0:224, 16#0000ffff:32, 16#ff000000:32, 16#64000a00:32 >>, + packet_send(Socket, << 16#12070300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, + Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary >>). + %% @doc Send the player's partner card. %% @todo Handle the LID and comment properly. send_1500(Character, #client{socket=Socket, gid=DestGID}) ->