psu_proto: Review and move send_0c08 to psu_proto.
This commit is contained in:
parent
31dc7ffb7f
commit
a86e4caf0d
@ -436,8 +436,8 @@ event({item_unequip, ItemIndex, TargetGID, TargetLID, A, B}, #state{gid=GID}) ->
|
||||
0:64, TargetGID:32/little-unsigned-integer, TargetLID:32/little-unsigned-integer, ItemIndex, 2, Category, A, B:32/little-unsigned-integer >>);
|
||||
|
||||
%% @todo Just ignore the meseta price for now and send the player where he wanna be!
|
||||
event(lobby_transport_request, _State) ->
|
||||
psu_game:send_0c08(true);
|
||||
event(lobby_transport_request, State) ->
|
||||
psu_proto:send_0c08(State);
|
||||
|
||||
event(lumilass_options_request, State=#state{gid=GID}) ->
|
||||
{ok, User} = egs_user_model:read(GID),
|
||||
|
@ -395,12 +395,6 @@ send_0c06(Filename) ->
|
||||
{ok, << File/bits >>} = file:read_file(Filename),
|
||||
send(<< 16#0c060300:32, 0:288, 1:32/little-unsigned-integer, File/binary >>).
|
||||
|
||||
%% @doc Reply whether the player is allowed to use the transport option.
|
||||
%% Use true for allowing it, and false otherwise.
|
||||
send_0c08(Response) ->
|
||||
Value = if Response =:= true -> 0; true -> 1 end,
|
||||
send(<< (header(16#0c08))/binary, Value:32 >>).
|
||||
|
||||
%% @doc Send the trial start notification.
|
||||
send_0c09() ->
|
||||
send(<< (header(16#0c09))/binary, 0:64 >>).
|
||||
|
@ -1427,6 +1427,10 @@ send_0c00(CharUser, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
|
||||
send_0c06(Pack, #state{socket=Socket}) ->
|
||||
packet_send(Socket, << 16#0c060300:32, 0:288, 1:32/little-unsigned-integer, Pack/binary >>).
|
||||
|
||||
%% @doc Reply that the player is allowed to use the lobby transport. Always allow.
|
||||
send_0c08(#state{socket=Socket, gid=DestGID}) ->
|
||||
packet_send(Socket, << 16#0c080300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:96 >>).
|
||||
|
||||
%% @doc Send the counter's mission options (0 = invisible, 2 = disabled, 3 = available).
|
||||
%% @todo LID.
|
||||
send_0c10(Options, #state{socket=Socket, gid=DestGID}) ->
|
||||
|
Loading…
Reference in New Issue
Block a user