psu_proto: Move send_0c09 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 18:09:07 +01:00
parent a44fc4274f
commit 64d8bf7c25
2 changed files with 5 additions and 4 deletions

View File

@ -282,10 +282,6 @@ build_item_constants(#psu_trap_item{max_quantity=MaxQuantity}) ->
build_item_constants(#psu_special_item{}) ->
<< 0:160 >>.
%% @doc Send the trial start notification.
send_0c09() ->
send(<< (header(16#0c09))/binary, 0:64 >>).
%% @doc Send the character list for selection.
%% @todo There's a few odd values blanked, also the last known location apparently.
send_0d03(Data0, Data1, Data2, Data3) ->

View File

@ -1465,6 +1465,11 @@ send_0c06(Pack, #client{socket=Socket}) ->
send_0c08(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#0c080300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:96 >>).
%% @doc Send the trial start notification.
%% @todo This packet hasn't been reviewed at all yet.
send_0c09(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#0c090300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, 0:64 >>).
%% @doc Send the counter's mission options (0 = invisible, 2 = disabled, 3 = available).
send_0c10(Options, #client{socket=Socket, gid=DestGID, lid=DestLID}) ->
Size = byte_size(Options),