From 53a4b3dbbe89d14fef53eb5825a3eebc2e5df8d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 22:27:47 +0100 Subject: [PATCH] psu_proto: Move send_170a to psu_proto without reviewing it. --- src/egs_game.erl | 4 ++-- src/psu/psu_game.erl | 5 ----- src/psu/psu_proto.erl | 6 ++++++ 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 27c2ff8..6384628 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -307,8 +307,8 @@ event(counter_party_info_request, Client=#client{gid=GID}) -> psu_proto:send_1706((User#users.character)#characters.name, Client); %% @todo Item distribution is always set to random for now. -event(counter_party_options_request, _Client) -> - psu_game:send_170a(); +event(counter_party_options_request, Client) -> + psu_proto:send_170a(Client); %% @doc Request the counter's quest files. event({counter_quest_files_request, CounterID}, Client) -> diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 386aed9..9a6d313 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -375,11 +375,6 @@ send_1602() -> GID = get(gid), send(<< 16#16020300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:96, Bin/binary, 0:MiddlePaddingSize, NbNPC, 0:24, UCS2PMName/binary, 0:EndPaddingSize, 0:32 >>). -%% @doc Party settings. Item distribution is random for now. -%% @todo Handle correctly. -send_170a() -> - send(<< (header(16#170a))/binary, 16#01010c08:32 >>). - %% @todo Find what the heck this packet is. send_170c() -> {ok, File} = file:read_file("p/packet170c.bin"), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index c011cc4..13779a3 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1658,6 +1658,12 @@ send_1706(CharName, #client{socket=Socket, gid=DestGID}) -> 16#00000300:32, 16#d5c0faff:32, 0:64, CharName/binary, 16#78000000:32, 16#01010000:32, 0:1536, 16#0100c800:32, 16#0601010a:32, 16#ffffffff:32, 0:32 >>). +%% @doc Party settings. Item distribution is random for now. +%% @todo Handle correctly. +%% @todo This packet hasn't been reviewed at all yet. +send_170a(#client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#170a0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 16#01010c08:32 >>). + %% @doc Send the background to use for the counter. send_1711(Bg, #client{socket=Socket, gid=DestGID, lid=DestLID}) -> packet_send(Socket, << 16#17110300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Bg:8, 0:24 >>).