diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 24bd100..8f217b1 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -364,7 +364,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName true -> ignore end; true -> - send_020c() + psu_proto:send_020c(User) end, if ZoneChange =:= true -> case AreaType of @@ -597,7 +597,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}) -> send_100e(16#7fffffff, 0, 0, AreaName, CounterID), psu_proto:send_0215(User, 0), psu_proto:send_0215(User, 0), - send_020c(), + psu_proto:send_020c(User), send_1202(), send_1204(), send_1206(), @@ -1176,10 +1176,6 @@ send_0204(PlayerGID, PlayerLID, Action) -> send_0208() -> send(<< (header(16#0208))/binary, 2:32/little-unsigned-integer >>). -%% @todo No idea what this one does. For unknown reasons it uses channel 2. -send_020c() -> - send(<< 16#020c020c:32, 16#fffff20c:32, 0:256 >>). - %% @doc Send the zone file to be loaded. send_020f(Filename, SetID, SeasonID) -> {ok, File} = file:read_file(Filename), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 237597c..7840cac 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -943,6 +943,10 @@ send_0205(DestUser, IsSeasonal) -> packet_send(CSocket, << 16#02050300:32, LID:16/little, 0:144, 16#00011300:32, GID:32/little, 0:64, 16#ffffffff:32, ZoneID:32/little, MapID:32/little, EntryID:32/little, 1:32/little, 0:24, IsSeasonal:8 >>). +%% @todo No idea what this one does. For unknown reasons it uses channel 2. +send_020c(DestUser) -> + packet_send(DestUser#egs_user_model.socket, << 16#020c0200:32, 16#ffff0000:32, 0:256 >>). + %% @doc Send the quest file to be loaded by the client. send_020e(DestUser, Filename) -> {ok, File} = file:read_file(Filename),