From 82e82503fa0e5c89b153ff02e2d25b7ec94e731a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 18:39:04 +0100 Subject: [PATCH] psu_proto: Move send_1202 to psu_proto without reviewing it. --- src/egs_game.erl | 2 +- src/psu/psu_game.erl | 4 ---- src/psu/psu_proto.erl | 5 +++++ 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index b462cfe..3dbc784 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -268,7 +268,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, Client=#cl psu_proto:send_0215(0, Client2), psu_proto:send_0215(0, Client2), psu_proto:send_020c(Client2), - psu_game:send_1202(), + psu_proto:send_1202(), psu_proto:send_1204(Client2), psu_game:send_1206(), psu_game:send_1207(), diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index a470c62..52d104a 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -337,10 +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_1202() -> - send(<< (header(16#1202))/binary, 0:32, 16#10000000:32, 0:64, 16#14000000:32, 0:32 >>). - %% @doc Object events response? %% @todo Not sure what Value does exactly. It's either 0 or 1. send_1205(EventID, BlockID, Value) -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 4f15183..7ec0085 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1574,6 +1574,11 @@ send_110e(Data, #client{socket=Socket, gid=DestGID}) -> send_1113(Data, #client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#11130300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Data/binary >>). +%% @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_1202(#client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#12020300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:32, 16#10000000:32, 0:64, 16#14000000:32, 0:32 >>). + %% @todo Always the same value, no idea what it's for. send_1204(#client{socket=Socket, gid=DestGID, lid=DestLID}) -> packet_send(Socket, << 16#12040300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:96, 16#20000000:32, 0:256 >>).