Quote:
Originally Posted by Zeljian
the column of the propitem.txt //ver column, if the code
16 II_SYSLORDCLOAK thte item is not working., if i change to 15 its working.,
|
It is because
Code:
if( nVer <= __VER )
{
m_mapII.insert( std::map<std::string, DWORD>::value_type( prop.szName, prop.dwID ) );
when it reads the propitem file. You can change the values to 15 or you can comment out the if part. That will allow items with separate versions that are above your version define to be added.
that is if you dont want to increase the define to 16.