psu_proto: Move send_1212 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 22:00:08 +01:00
parent 4848b3c218
commit d0e15316b8
3 changed files with 8 additions and 7 deletions

View File

@ -268,11 +268,11 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, Client=#cl
psu_proto:send_0215(0, Client2),
psu_proto:send_0215(0, Client2),
psu_proto:send_020c(Client2),
psu_proto:send_1202(),
psu_proto:send_1202(Client2),
psu_proto:send_1204(Client2),
psu_proto:send_1206(Client2),
psu_proto:send_1207(Client2),
psu_game:send_1212(),
psu_proto:send_1212(Client2),
psu_proto:send_0201(User, Client2),
psu_proto:send_0a06(User, Client2),
case User#users.partypid of

View File

@ -83,7 +83,7 @@ area_load(QuestID, ZoneID, MapID, EntryID, Client) ->
psu_proto:send_100e(User3#users.area, User3#users.entryid, AreaShortName, Client2),
%% Load the zone objects.
if ZoneChange ->
send_1212(); %% @todo Only sent if there is a set file.
psu_proto:send_1212(Client2); %% @todo Only sent if there is a set file.
true -> ignore
end,
%% Load the player.
@ -337,10 +337,6 @@ send_1016(PartyPos) ->
GID = get(gid),
send(<< 16#10160300:32, 16#ffff0000:32, 0:128, 16#00011300:32, GID:32/little, 0:64, PartyPos:32/little >>).
%% @doc Make the client load the quest previously sent.
send_1212() ->
send(<< (header(16#1212))/binary, 0:19200 >>).
%% @todo Not sure. Related to keys.
send_1213(A, B) ->
send(<< (header(16#1213))/binary, A:32/little, B:32/little >>).

View File

@ -1607,6 +1607,11 @@ send_1207(#client{socket=Socket, gid=DestGID}) ->
send_1211(A, B, C, D, #client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12110300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, A:32/little, B:32/little, C:32/little, D:32/little >>).
%% @doc Make the client load the quest previously sent.
%% @todo This packet hasn't been reviewed at all yet.
send_1212(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12120300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:19200 >>).
%% @doc Send the player's partner card.
%% @todo Handle the LID and comment properly.
send_1500(Character, #client{socket=Socket, gid=DestGID}) ->