psu_proto: Move send_170c to psu_proto without reviewing it.
This commit is contained in:
parent
53a4b3dbbe
commit
dfa5634adb
@ -239,8 +239,8 @@ event({chat, _FromTypeID, FromGID, _FromName, Modifiers, ChatMsg}, #client{gid=U
|
||||
egs_users:broadcast_all({egs, chat, UserGID, BcastTypeID, BcastGID, BcastName, Modifiers, ChatMsg});
|
||||
|
||||
%% @todo There's at least 9 different sets of locations. Handle all of them correctly.
|
||||
event(counter_background_locations_request, _Client) ->
|
||||
psu_game:send_170c();
|
||||
event(counter_background_locations_request, Client) ->
|
||||
psu_proto:send_170c(Client);
|
||||
|
||||
%% @todo Make sure non-mission counters follow the same loading process.
|
||||
%% @todo Probably validate the From* values, to not send the player back inside a mission.
|
||||
|
@ -375,11 +375,6 @@ send_1602() ->
|
||||
GID = get(gid),
|
||||
send(<< 16#16020300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:96, Bin/binary, 0:MiddlePaddingSize, NbNPC, 0:24, UCS2PMName/binary, 0:EndPaddingSize, 0:32 >>).
|
||||
|
||||
%% @todo Find what the heck this packet is.
|
||||
send_170c() ->
|
||||
{ok, File} = file:read_file("p/packet170c.bin"),
|
||||
send(<< (header(16#170c))/binary, File/binary >>).
|
||||
|
||||
%% @doc PP cube handler.
|
||||
%% @todo The 4 bytes before the file may vary. Everything past that is the same. Figure things out.
|
||||
send_1a04() ->
|
||||
|
@ -1664,6 +1664,12 @@ send_1706(CharName, #client{socket=Socket, gid=DestGID}) ->
|
||||
send_170a(#client{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#170a0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 16#01010c08:32 >>).
|
||||
|
||||
%% @todo Find what the heck this packet is.
|
||||
%% @todo This packet hasn't been reviewed at all yet.
|
||||
send_170c(#client{socket=Socket, gid=DestGID}) ->
|
||||
{ok, File} = file:read_file("p/packet170c.bin"),
|
||||
packet_send(Socket, << 16#170c0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, File/binary >>).
|
||||
|
||||
%% @doc Send the background to use for the counter.
|
||||
send_1711(Bg, #client{socket=Socket, gid=DestGID, lid=DestLID}) ->
|
||||
packet_send(Socket, << 16#17110300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Bg:8, 0:24 >>).
|
||||
|
Loading…
Reference in New Issue
Block a user