psu_proto: Move send_1113 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 18:36:28 +01:00
parent 564ab8749f
commit fde008c7a8
3 changed files with 6 additions and 5 deletions

View File

@ -177,7 +177,7 @@ raw(16#1106, << _:352, Data/bits >>, Client) ->
%% @doc Probably asking permission to start the video (used for syncing?).
raw(16#1112, << _:352, Data/bits >>, _Client) ->
psu_game:send_1113(Data);
psu_proto:send_1113(Data, Client);
%% @todo Not sure yet. Value is probably a TargetID. Used in Airboard Rally. Replying with the same value starts the race.
raw(16#1216, << _:352, Data/bits >>, _Client) ->

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 Boss related command.
send_1113(Data) ->
send(<< (header(16#1113))/binary, Data/binary >>).
%% @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 >>).

View File

@ -1569,6 +1569,11 @@ send_1022(#users{character=#characters{currenthp=HP}}, #client{socket=Socket, gi
send_110e(Data, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#110e0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Data/binary, 0:32, 5:16/little, 12:16/little, 0:32, 260:32/little >>).
%% @todo Boss related command.
%% @todo This packet hasn't been reviewed at all yet.
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 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 >>).