psu_proto: Review and move send_1a02 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-10-06 17:51:28 +02:00
parent 591a3bd1ba
commit 5f13ffcaf4
2 changed files with 6 additions and 6 deletions

View File

@ -716,12 +716,6 @@ send_170c() ->
send_1711(Background) ->
send(<< (header(16#1711))/binary, Background:32/little-unsigned-integer >>).
%% @doc Unknown dialog-related handler.
%% @todo Everything!
send_1a02(A, B, C, D, E) ->
send(<< (header(16#1a02))/binary, A:32/little-unsigned-integer, B:16/little-unsigned-integer,
C:16/little-unsigned-integer, D:16/little-unsigned-integer, E:16/little-unsigned-integer >>).
%% @doc Lumilass handler. Possibly more.
%% @todo Figure out how Lumilass work exactly. The 4 bytes before the file may vary.
send_1a03() ->

View File

@ -1408,6 +1408,12 @@ send_1022(#egs_user_model{character=#characters{currenthp=HP}}, #state{socket=So
send_1204(#state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12040300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:96, 16#20000000:32, 0:256 >>).
%% @doc NPC shop request reply.
%% @todo Handle the LID properly.
send_1a02(A, B, C, D, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#1a020300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:96,
A:16/little, B:16/little, C:16/little, D:16/little >>).
%% @doc Available types handler. Enable all 16 types.
send_1a07(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#1a070300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:160,