game: Enable flags and make lobby transport work.

Flags will have to be checked individually and handled correctly later.
This commit is contained in:
Loïc Hoguin 2010-06-05 03:28:30 +02:00
parent 190d79777c
commit 006ac0a9c0
2 changed files with 13 additions and 1 deletions

View File

@ -655,6 +655,13 @@ handle(16#0c05, CSocket, _, _, _) ->
{ok, << _:32, Packet/bits >>} = file:read_file("p/packet0c06.bin"),
egs_proto:packet_send(CSocket, Packet);
%% @doc Lobby transport handler? Just ignore the meseta price and send the player where he wanna be!
%% @todo Handle correctly.
handle(16#0c07, CSocket, GID, _, _) ->
Packet = << 16#0c080300:32, 16#ffff0000:32, 0:128, 16#00011300:32, GID:32/little-unsigned-integer, 0:96 >>,
egs_proto:packet_send(CSocket, Packet);
%% @doc Counter available mission list request handler.
%% @todo Temporarily allow rare mission and LL all difficulties to all players.

View File

@ -142,9 +142,14 @@ send_character_list(CSocket, GID, Data0, Data1, Data2, Data3) ->
%% @doc Send the data for the selected character.
%% @todo The large chunk of 0s can have some values set... but what are they used for?
%% @todo The values after the Char variable are the flags. Probably use bits to define what flag is and isn't set. Handle correctly.
send_character_selected(CSocket, GID, Char, Options) ->
Packet = << 16#0d010300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, Char/binary, 0:8128, Options/binary >>,
Packet = << 16#0d010300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, Char/binary,
16#ffbbef1c:32, 16#f8ff0700:32, 16#fc810916:32, 16#7802134c:32,
16#b0c0040f:32, 16#7cf0e583:32, 16#b7bce0c6:32, 16#7ff8f963:32,
16#3fd7ffff:32, 16#fff7ffff:32, 16#f3ff63e0:32, 16#1fe00000:32,
0:7744, Options/binary >>,
packet_send(CSocket, Packet).
%% @doc Send a chat command. AOTI v2.000 version of the command.