psu_proto: Pass the process state to send_0c00.

This commit is contained in:
Loïc Hoguin 2010-09-22 04:19:04 +02:00
parent e3bd9a38a6
commit ec22000d51
3 changed files with 5 additions and 6 deletions

View File

@ -265,7 +265,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
{ok, UnspawnList} = egs_user_model:select({neighbors, OldUser}),
lists:foreach(fun(Other) -> Other#egs_user_model.pid ! {egs, player_unspawn, User} end, UnspawnList),
%% load counter
psu_proto:send_0c00(User),
psu_proto:send_0c00(User, State),
psu_proto:send_020e(QuestFile, State),
psu_proto:send_0a05(State),
psu_proto:send_010d(User#egs_user_model{lid=0}, State),

View File

@ -144,7 +144,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
% load area
if QuestChange =:= true ->
% load new quest
psu_proto:send_0c00(User),
psu_proto:send_0c00(User, State),
psu_proto:send_020e(QuestFile, State);
true -> ignore
end,

View File

@ -1226,10 +1226,9 @@ send_0a05(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
%% @doc Quest init.
%% @todo When first entering a zone it seems LID should be set to ffff apparently.
send_0c00(DestUser) ->
#egs_user_model{socket=CSocket, id=GID, lid=LID, area=Area} = DestUser,
QuestID = Area#psu_area.questid,
packet_send(CSocket, << 16#0c000300:32, LID:16/little, 0:144, 16#00011300:32, GID:32/little, 0:64, QuestID:32/little,
send_0c00(CharUser, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
#egs_user_model{area=#psu_area{questid=QuestID}} = CharUser,
packet_send(Socket, << 16#0c000300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, QuestID:32/little,
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,
16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32,