psu_proto: Move send_1202 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 18:39:04 +01:00
parent fde008c7a8
commit 82e82503fa
3 changed files with 6 additions and 5 deletions

View File

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

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_1202() ->
send(<< (header(16#1202))/binary, 0:32, 16#10000000:32, 0:64, 16#14000000:32, 0:32 >>).
%% @doc Object events response?
%% @todo Not sure what Value does exactly. It's either 0 or 1.
send_1205(EventID, BlockID, Value) ->

View File

@ -1574,6 +1574,11 @@ send_110e(Data, #client{socket=Socket, gid=DestGID}) ->
send_1113(Data, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#11130300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Data/binary >>).
%% @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_1202(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12020300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:32, 16#10000000:32, 0:64, 16#14000000:32, 0:32 >>).
%% @todo Always the same value, no idea what it's for.
send_1204(#client{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#12040300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:96, 16#20000000:32, 0:256 >>).