From a44fc4274f0d449a50da633a5434b56252bff4cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 18:03:55 +0100 Subject: [PATCH] psu_proto: Move send_0c02 to psu_proto without reviewing it. --- src/egs_game.erl | 2 +- src/psu/psu_game.erl | 4 ---- src/psu/psu_proto.erl | 5 +++++ 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 753d3bf..d2fe8fd 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -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. diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 2e4701b..1c35d1e 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -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 >>). diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index b0a8205..2c815bc 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -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 >>).