diff --git a/src/egs_game.erl b/src/egs_game.erl index 41ef87f..4ac78c8 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -172,8 +172,8 @@ raw(16#1019, _Data, _Client) -> %~ psu_game:send(<< 16#10190300:32, 0:160, 16#00011300:32, GID:32/little, 0:64, 0:192, 16#00200000:32, 0:32 >>); %% @todo Not sure about that one though. Probably related to 1112 still. -raw(16#1106, << _:352, Data/bits >>, _Client) -> - psu_game:send_110e(Data); +raw(16#1106, << _:352, Data/bits >>, Client) -> + psu_proto:send_110e(Data, Client); %% @doc Probably asking permission to start the video (used for syncing?). raw(16#1112, << _:352, Data/bits >>, _Client) -> diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index b26cd54..92cbc05 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 Boss related command. -send_110e(Data) -> - send(<< (header(16#110e))/binary, Data/binary, 0:32, 5:16/little, 12:16/little, 0:32, 260:32/little >>). - %% @todo Boss related command. send_1113(Data) -> send(<< (header(16#1113))/binary, Data/binary >>). diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 5c7cbe3..30d49a8 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1564,6 +1564,11 @@ send_1022(#users{character=#characters{currenthp=HP}}, #client{socket=Socket, gi PartyPos = 0, packet_send(Socket, << 16#10220300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, HP:32/little, PartyPos:32/little >>). +%% @todo Boss related command. +%% @todo This packet hasn't been reviewed at all yet. +send_110e(Data, #client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#110e0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Data/binary, 0:32, 5:16/little, 12:16/little, 0:32, 260:32/little >>). + %% @todo Always the same value, no idea what it's for. send_1204(#client{socket=Socket, gid=DestGID, lid=DestLID}) -> packet_send(Socket, << 16#12040300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:96, 16#20000000:32, 0:256 >>).