Review send_020c and move it to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-08-29 22:21:23 +02:00
parent f0754543cf
commit 2ba8020f24
2 changed files with 6 additions and 6 deletions

View File

@ -364,7 +364,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
true -> ignore true -> ignore
end; end;
true -> true ->
send_020c() psu_proto:send_020c(User)
end, end,
if ZoneChange =:= true -> if ZoneChange =:= true ->
case AreaType of case AreaType of
@ -597,7 +597,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}) ->
send_100e(16#7fffffff, 0, 0, AreaName, CounterID), send_100e(16#7fffffff, 0, 0, AreaName, CounterID),
psu_proto:send_0215(User, 0), psu_proto:send_0215(User, 0),
psu_proto:send_0215(User, 0), psu_proto:send_0215(User, 0),
send_020c(), psu_proto:send_020c(User),
send_1202(), send_1202(),
send_1204(), send_1204(),
send_1206(), send_1206(),
@ -1176,10 +1176,6 @@ send_0204(PlayerGID, PlayerLID, Action) ->
send_0208() -> send_0208() ->
send(<< (header(16#0208))/binary, 2:32/little-unsigned-integer >>). 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. %% @doc Send the zone file to be loaded.
send_020f(Filename, SetID, SeasonID) -> send_020f(Filename, SetID, SeasonID) ->
{ok, File} = file:read_file(Filename), {ok, File} = file:read_file(Filename),

View File

@ -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, 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 >>). 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. %% @doc Send the quest file to be loaded by the client.
send_020e(DestUser, Filename) -> send_020e(DestUser, Filename) ->
{ok, File} = file:read_file(Filename), {ok, File} = file:read_file(Filename),