This commit is contained in:
alexey.min
2012-02-06 19:44:05 +00:00
parent 951611a412
commit 99d453d594
2 changed files with 13 additions and 1 deletions

View File

@@ -87,6 +87,7 @@ void L2PacketTypes_LogClient
} // switch( state )
}
void L2PacketTypes_LogServer
(
L2_VERSION l2_version,
@@ -102,9 +103,18 @@ void L2PacketTypes_LogServer
{
case GCST_CONNECTED:
{
switch( ptype )
{
case 0x2e: log_error( LOG_PACKETNAME, "Server: 2e KeyPacket\n" ); break;
case 0x09: log_error( LOG_PACKETNAME, "Server: 09 CharacterSelectionInfo\n" ); break;
}
} break;
case GCST_AUTHED:
{
switch( ptype )
{
case 0x09: log_error( LOG_PACKETNAME, "Server: 09 CharacterSelectionInfo\n" ); break;
}
} break;
case GCST_IN_GAME:
{

View File

@@ -71,6 +71,8 @@ void L2Packets_GetL2PacketName(
// Gracia Final has too many differences...
case L2_VERSION_T23:
case L2_VERSION_T24: // for a while think that Epilogue has same opcodes as Gracia Final
case L2_VERSION_FREYA:
case L2_VERSION_HF:
{
if( fromServer )
L2Packets_GetL2PacketName_fromServer_t23( opcode1, opcode2, outPacketName, cchMax );