psu_proto: Move send_1207 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 21:32:35 +01:00
parent e8c1c98824
commit 7415da1c89
3 changed files with 8 additions and 6 deletions

View File

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

View File

@ -337,11 +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_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 >>,
send(<< (header(16#1207))/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary >>).
%% @todo Object interaction? Figure out. C probably the interaction type.
%% @todo Apparently A would be TargetID/ffffffff, B would be the player LID, C would be the object type? D still completely unknown.
send_1211(A, B, C, D) ->

View File

@ -1594,6 +1594,13 @@ send_1205(EventID, BlockID, Value, #client{socket=Socket, gid=DestGID}) ->
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 >>).
%% @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_1207(#client{socket=Socket, gid=DestGID}) ->
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 >>,
packet_send(Socket, << 16#12070300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64,
Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary, Chunk/binary >>).
%% @doc Send the player's partner card.
%% @todo Handle the LID and comment properly.
send_1500(Character, #client{socket=Socket, gid=DestGID}) ->