Jump to content

Strange Syserr in Client DEBUG.[FIXED]


Go to solution Solved by Root,

Recommended Posts

Hello community,

Well I don`t know but when i walk to that specific location i get the following Syserr in Debug:

Spoiler

a3fe879ce82a4073987dd34a1fbdc855.png

 

Anyone knows why?

It can be from a npc ?

But my debug is clean i solved all other errors , i just found this one now.

This triggers it from client/NetworkActorManager.cpp

Spoiler

void CNetworkActorManager::RemoveActor(DWORD dwVID)
{
	std::map<DWORD, SNetworkActorData>::iterator f=m_kNetActorDict.find(dwVID);
	if (m_kNetActorDict.end()==f)
	{
#ifdef _DEBUG		
		TraceError("CNetworkActorManager::RemoveActor(dwVID=%d) - NOT EXIST VID", dwVID);
#endif
		return;
	}

	SNetworkActorData& rkNetActorData=f->second;
	__RemoveCharacterManagerActor(rkNetActorData);

	m_kNetActorDict.erase(f);
}

 

 

Edited by Metin2 Dev
Core X - External 2 Internal
  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.