Jump to content

how to rise maxim level to 400 in client source?


Recommended Posts

yes and work but you must edit another things in source like in guild.cpp at level 

{}
    SGuildMember::SGuildMember(DWORD pid, BYTE grade, BYTE is_general, BYTE job, BYTE level, DWORD offer_exp, char* name)
: pid(pid), grade(grade), is_general(is_general), job(job), level(level), offer_exp(offer_exp), name(name)
{}

and this you must change in guild.h

typedef struct SGuildMember
{
    DWORD pid; // player 테이블의 id; primary key
    BYTE grade; // 길드상의 플레이어의 계급 1 to 15 (1이 짱)
    BYTE is_general;
    BYTE job;
    BYTE level;
    DWORD offer_exp; // 공헌한 경험치
    BYTE _dummy;

after:

    SGuildMember(DWORD pid, BYTE grade, BYTE is_general, BYTE job, BYTE level, DWORD offer_exp, char* name);

after in same file search:

typedef struct SGuildMemberPacketData
{   
    DWORD pid;
    BYTE grade;
    BYTE is_general;
    BYTE job;
    BYTE level;
    DWORD offer;
    BYTE name_flag;
    char name[CHARACTER_NAME_MAX_LEN+1];

dont forget to edit pythonguild from client

Edited by Thanatos
  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.