Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Log error and neuz crash.

Custom Title Activated
Loyal Member
Joined
Mar 26, 2012
Messages
1,465
Reaction score
131
So I modded my character to level 198 and was clicking on the map to move him around when all of a sudden my Neuz crashed. The log that I received was the following. I believe it has something to do with the User.cpp source code but, could be wrong. Any suggestions on how to fix this?

RemoveUser(): *pUser->m_pKey is '

User.cpp source
if( !pUser->m_bIllegal )
{
if( *pUser->m_pKey != '\0' )
{
g_dpDBClient.SendLeave( pUser->m_pKey, pUser->m_idPlayer, timeGetTime() - pUser->m_dwTime );
}
else
WriteLog( "RemoveUser(): *pUser->m_pKey is '\0'" );

if( pUser->m_idPlayer > 0 )
g_dpCoreClient.SendLeave( pUser->m_idPlayer );
}
else
{
WriteLog( "RemoveUser(): Illegal" );
}
g_dpLoginSrvr.CacheOut( pUser->m_nIndexOfCache );

SAFE_DELETE( pUser );
m_uCount--;
return TRUE;
 
Back
Top