psu_proto: Move send_0c02 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 18:03:55 +01:00
parent 5f0bd73303
commit a44fc4274f
3 changed files with 6 additions and 5 deletions

View File

@ -453,7 +453,7 @@ event({mission_start, QuestID}, Client) ->
log("mission start ~b", [QuestID]),
psu_proto:send_1020(Client),
psu_game:send_1015(QuestID),
psu_game:send_0c02();
psu_proto:send_0c02(Client);
%% @doc Force the invite of an NPC character while inside a mission. Mostly used by story missions.
%% Note that the NPC is often removed and reinvited between block/cutscenes.

View File

@ -282,10 +282,6 @@ build_item_constants(#psu_trap_item{max_quantity=MaxQuantity}) ->
build_item_constants(#psu_special_item{}) ->
<< 0:160 >>.
%% @todo Figure out last 4 bytes!
send_0c02() ->
send(<< (header(16#0c02))/binary, 0:32 >>).
%% @doc Send the trial start notification.
send_0c09() ->
send(<< (header(16#0c09))/binary, 0:64 >>).

View File

@ -1452,6 +1452,11 @@ send_0c00(CharUser, #client{socket=Socket, gid=DestGID, lid=DestLID}) ->
16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32,
16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32 >>).
%% @todo Figure out last 4 bytes!
%% @todo This packet hasn't been reviewed at all yet.
send_0c02(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#0c020300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, 0:32 >>).
%% @doc Send the huge pack of quest files available in the counter.
send_0c06(Pack, #client{socket=Socket}) ->
packet_send(Socket, << 16#0c060300:32, 0:288, 1:32/little, Pack/binary >>).