psu_proto: Move send_1206 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 21:28:07 +01:00
parent fde0f8b3fe
commit e8c1c98824
3 changed files with 6 additions and 5 deletions

View File

@ -270,7 +270,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, Client=#cl
psu_proto:send_020c(Client2),
psu_proto:send_1202(),
psu_proto:send_1204(Client2),
psu_game:send_1206(),
psu_proto:send_1206(Client2),
psu_game:send_1207(),
psu_game:send_1212(),
psu_proto:send_0201(User, Client2),

View File

@ -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_1206() ->
send(<< (header(16#1206))/binary, 0:32, 16#80020000:32, 0:5120 >>).
%% @todo Figure out what this packet does. Sane values for counter and missions for now.
send_1207() ->
Chunk = << 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 0:224, 16#0000ffff:32, 16#ff000000:32, 16#64000a00:32 >>,

View File

@ -1589,6 +1589,11 @@ send_1204(#client{socket=Socket, gid=DestGID, lid=DestLID}) ->
send_1205(EventID, BlockID, Value, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12050300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, EventID, BlockID, 0:16, Value, 0:24 >>).
%% @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_1206(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:32, 16#80020000:32, 0:5120 >>).
%% @doc Send the player's partner card.
%% @todo Handle the LID and comment properly.
send_1500(Character, #client{socket=Socket, gid=DestGID}) ->