Buffs in Database

12/19/2014 22:07 raventh1984#1
Hi elitepvpers,

I am wondering where in the database are the buffs stored?

Cause my DB is crashing and i have this.

CBuffMgr& CBuffMgr

That is leading to this code

Code:
CBuffMgr& CBuffMgr::operator =( CBuffMgr & bm )
{
	Clear();
	for( MAPBUFF::iterator i = bm.m_mapBuffs.begin(); i != bm.m_mapBuffs.end(); ++i )
	{
		IBuff* pSource	= i->second;
		IBuff* pDest	= CreateBuff( pSource->GetType() );
		*pDest	= *pSource;
		bool bResult	= Add( pDest );
		ASSERT( bResult );
	}
	return *this;
}
I updated the SKILLINFLUENCE_TBL to $
Cause an char is bugging.

Any help will be appriciated.
12/21/2014 21:35 Razzer~#2
Hey, it been a while that i worked with the source. But like the following code you posted.

But look up "Add( pDest );" , maybe you will find something.