diff --git a/src/egs_game.erl b/src/egs_game.erl index 4b75b02..76e012c 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -270,7 +270,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, Client=#cl psu_proto:send_020c(Client2), psu_proto:send_1202(), psu_proto:send_1204(Client2), - psu_game:send_1206(), + psu_proto:send_1206(Client2), psu_game:send_1207(), psu_game:send_1212(), psu_proto:send_0201(User, Client2), diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index fc325c4..4ffdb30 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -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 >>). -%% @todo Figure out what this packet does. Sane values for counter and missions for now. -send_1206() -> - send(<< (header(16#1206))/binary, 0:32, 16#80020000:32, 0:5120 >>). - %% @todo Figure out what this packet does. Sane values for counter and missions for now. send_1207() -> Chunk = << 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 16#ffffffff:32, 0:224, 16#0000ffff:32, 16#ff000000:32, 16#64000a00:32 >>, diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 18af3df..d4cefcc 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1589,6 +1589,11 @@ send_1204(#client{socket=Socket, gid=DestGID, lid=DestLID}) -> send_1205(EventID, BlockID, Value, #client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#12050300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, EventID, BlockID, 0:16, Value, 0:24 >>). +%% @todo Figure out what this packet does. Sane values for counter and missions for now. +%% @todo This packet hasn't been reviewed at all yet. +send_1206(#client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#12060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 0:32, 16#80020000:32, 0:5120 >>). + %% @doc Send the player's partner card. %% @todo Handle the LID and comment properly. send_1500(Character, #client{socket=Socket, gid=DestGID}) ->