i already merge RACERAN ITEM.csv to JUVER but it doesn't read 512 MID(Main ID)
it can only read 511 MID..
what file in source code to increase MID?
i already merge RACERAN ITEM.csv to JUVER but it doesn't read 512 MID(Main ID)
it can only read 511 MID..
what file in source code to increase MID?
MID_Max = 511 search the entire solution
in itemeditor
find dlgitem.cpp
search
for ( int MID = 0; MID < GLItemMan::MAX_MID; MID++ )
for ( int SID = 0; SID < GLItemMan::MAX_SID; SID++ )
change to
for ( int MID = 0; MID < 999 ; MID++ )
for ( int SID = 0; SID < 999 ; SID++ )
i'm not test it yet. u try. good luck.
sorry bad english.
File: ..\RanClientLib\G-Logic\GLItemMan.h
class GLItemMan
{
public:
enum
{
ENCODE_VER = 0x0100,
VERSION = 0x0100,
MAX_MID = 1024, //Max Item Main Id
MAX_SID = 512, //Max Item Sub Id
MONEYMESH_NUM = 3,
SPECID_NUM = 600, //Gen Num of item, what to drop in game using the .genitem files
SHUFFLE_NUM = 5,
MAX_NUM = 8
};