Initial MSVC 2008 projects workspace
This commit is contained in:
15
l2ooghelper/packet_handlers/ph_CharCreateSuccess.cpp
Normal file
15
l2ooghelper/packet_handlers/ph_CharCreateSuccess.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "stdafx.h"
|
||||
#include "Logger.h"
|
||||
#include "L2Client.h"
|
||||
|
||||
void L2Client::ph_CharCreateSuccess( class L2Client *pcls, L2GamePacket *p )
|
||||
{
|
||||
L2Game_CharCreateSuccess *pc = new L2Game_CharCreateSuccess(
|
||||
p->getBytesPtr(), p->getPacketSize() );
|
||||
if( pc->parse( pcls->account.getL2Version() ) )
|
||||
{
|
||||
log_error( LOG_OK, "Char create OK\n" );
|
||||
pcls->addChatToTab( CHAT_SYS, L"Char create OK" );
|
||||
}
|
||||
delete pc;
|
||||
}
|
Reference in New Issue
Block a user