psu_proto: Move send_1215 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 22:15:20 +01:00
parent f40ba44364
commit 250a22dea8
3 changed files with 6 additions and 5 deletions

View File

@ -581,7 +581,7 @@ event({npc_shop_request, ShopID}, Client) ->
%% @todo Not sure what are those hardcoded values.
event({object_boss_gate_activate, ObjectID}, Client) ->
psu_proto:send_1213(ObjectID, 0, Client),
psu_game:send_1215(2, 16#7008),
psu_proto:send_1215(2, 16#7008, Client),
%% @todo Following sent after the warp?
psu_proto:send_1213(37, 0, Client),
%% @todo Why resend this?

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 Related to boss gates.
send_1215(A, B) ->
send(<< (header(16#1215))/binary, A:32/little, 0:16, B:16/little >>).
%% @todo Not sure yet. Value is probably a TargetID. Used in Airboard Rally. Replying with the same value starts the race.
send_1216(Value) ->
GID = get(gid),

View File

@ -1617,6 +1617,11 @@ send_1212(#client{socket=Socket, gid=DestGID}) ->
send_1213(A, B, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12130300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, A:32/little, B:32/little >>).
%% @todo Related to boss gates.
%% @todo This packet hasn't been reviewed at all yet.
send_1215(A, B, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12150300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, A:32/little, 0:16, B:16/little >>).
%% @doc Send the player's partner card.
%% @todo Handle the LID and comment properly.
send_1500(Character, #client{socket=Socket, gid=DestGID}) ->