diff --git a/src/egs_game.erl b/src/egs_game.erl index 4ac78c8..b462cfe 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -177,7 +177,7 @@ raw(16#1106, << _:352, Data/bits >>, Client) -> %% @doc Probably asking permission to start the video (used for syncing?). raw(16#1112, << _:352, Data/bits >>, _Client) -> - psu_game:send_1113(Data); + psu_proto:send_1113(Data, Client); %% @todo Not sure yet. Value is probably a TargetID. Used in Airboard Rally. Replying with the same value starts the race. raw(16#1216, << _:352, Data/bits >>, _Client) -> diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 92cbc05..a470c62 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_1113(Data) -> - send(<< (header(16#1113))/binary, Data/binary >>). - %% @todo Figure out what this packet does. Sane values for counter and missions for now. send_1202() -> send(<< (header(16#1202))/binary, 0:32, 16#10000000:32, 0:64, 16#14000000:32, 0:32 >>). diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 30d49a8..4f15183 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1569,6 +1569,11 @@ send_1022(#users{character=#characters{currenthp=HP}}, #client{socket=Socket, gi 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 Boss related command. +%% @todo This packet hasn't been reviewed at all yet. +send_1113(Data, #client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#11130300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Data/binary >>). + %% @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 >>).