Juver source[do not ignore]

Results 1 to 4 of 4
  1. #1
    -=GameOver=- Ace17 is offline
    MemberRank
    Jun 2013 Join Date
    598Posts

    ! Juver source[do not ignore]

    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?


  2. #2
    私のためには、一 jayr0428 is offline
    MemberRank
    Feb 2009 Join Date
    De_Dust 2Location
    254Posts

    Re: Juver source[do not ignore]

    MID_Max = 511 search the entire solution

  3. #3
    Proficient Member jamil92 is offline
    MemberRank
    Aug 2009 Join Date
    MalaysiaLocation
    171Posts

    Re: Juver source[do not ignore]

    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.

  4. #4
    Ì lövê ¥öµ! Fusion7 is offline
    MemberRank
    Jun 2009 Join Date
    MalaysiaLocation
    1,923Posts

    Re: Juver source[do not ignore]

    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
    };



Advertisement