From 8a94ae7771433b95ee2d5e7402dbfbe1645c744c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 10 Jun 2010 22:50:32 +0200 Subject: [PATCH] game: Use the existing 1006 function for abort mission. Also remove an already done @todo. --- src/egs_game.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 0653b52..8f8b94c 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -658,8 +658,7 @@ handle(16#0c07, CSocket, GID, _, _) -> %% @todo Warp the player to the lobby if he's in a mission. No need if he's in a counter though. handle(16#0c0e, CSocket, GID, _, _) -> - Packet = << 16#10060300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#0b000000:32 >>, - egs_proto:packet_send(CSocket, Packet); + send_1006(CSocket, GID, 11); %% @doc Counter available mission list request handler. %% @todo Temporarily allow rare mission and LL all difficulties to all players. @@ -692,7 +691,6 @@ handle(16#0d07, _, GID, _, Orig) -> %% @doc Hit handler. %% @todo Finish the work on it. %% @todo First value at 2C is the number of hits. We don't need to know it though. -%% @todo We should later send this into one 0e07 packet rather than many. handle(16#0e00, CSocket, GID, _, Orig) -> << _:448, Data/bits >> = Orig, @@ -1088,6 +1086,8 @@ send_1005(CSocket, GID, Char) -> Packet = << 16#10050300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, Before/binary, GID:32/little-unsigned-integer, 0:64, Name/binary, After/binary >>, egs_proto:packet_send(CSocket, Packet). +%% @doc Party-related command probably controlling the party state. +%% Value 11 aborts the mission. %% @todo Figure out what the packet is. send_1006(CSocket, GID, N) ->