psu_proto: Move send_170a to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 22:27:47 +01:00
parent 4faabbda8f
commit 53a4b3dbbe
3 changed files with 8 additions and 7 deletions

View File

@ -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) ->

View File

@ -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"),

View File

@ -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 >>).