Hi elitepvpers,
After altering the drops inside PropMoverEx.inc i noticed that what i added doesnt drop. Now i looked at the Error.log file and i noticed these errors
CProject::GetMoverProp out of range. 12 0
Now i have taken an look into the source to see what kind or error it is
It looks like its the size of the mob but i didnt changed it.
Anyone can give an tip?
P.s. this is my modified mob
With kind regards.
bump
After altering the drops inside PropMoverEx.inc i noticed that what i added doesnt drop. Now i looked at the Error.log file and i noticed these errors
CProject::GetMoverProp out of range. 12 0
Now i have taken an look into the source to see what kind or error it is
PHP Code:
MoverProp* GetMoverProp( int nIndex )
{
if( nIndex < 0 || nIndex >= m_nMoverPropSize )
{
LPCTSTR szErr = Error( "CProject::GetMoverProp out of range. %d %d", nIndex, m_nMoverPropSize );
TRACE( szErr );
return NULL;
}
if( m_pPropMover[nIndex].dwID )
return m_pPropMover + nIndex;
return NULL;
}
Anyone can give an tip?
P.s. this is my modified mob
With kind regards.
bump