Jump to content

Increase guild max lv


Recommended Posts

Hi, I tried increase max guild level and I have some problems.

 

When my guild have 20 lv, and I try donate exp it isn't work. Still I see "Guild Level: 20", "Current exp: 0", "Needed exp: 0". Now I'll show what I changed in server and client.

 

Server:

common/length.h
 

GUILD_MAX_LEVEL			= 30,

constants.cpp

const DWORD guild_exp_table2[GUILD_MAX_LEVEL+1] =
{
	0,	
	60000UL,
	180000UL,
	360000UL,
	640000UL,
	940000UL,
	1300000UL,
	1720000UL,
	2200000UL,
	2740000UL,
	3340000UL,
	4000000UL,
	6000000UL,
	8400000UL,
	11200000UL,
	14400000UL,
	18000000UL,
	26000000UL,
	32000000UL,
	40000000UL,
	168000000UL,
	1UL, //new 21 level
	1UL, //new 22 level
	1UL, //new 23 level
	1UL, //new 24 level
	1UL, //new 25 level
	1UL, //new 26 level
	1UL, //new 27 level
	1UL, //new 28 level
	1UL, //new 29 level
	1UL //new 30 level
	
};

Client:

UserInterface/Locale.cpp

static const int GUILD_LEVEL_MAX = 30;
static DWORD INTERNATIONAL_GUILDEXP_LIST[GUILD_LEVEL_MAX+1] = 
	{
		0,			// 0
		60000UL,		// 1
		180000UL,	// 2
		360000UL,	// 3
		640000UL,	// 4
		940000UL,	// 5
		1300000UL,	// 6
		1720000UL,	// 7
		2200000UL,	// 8
		2740000UL,	// 9
		3340000UL,	// 10
		4000000UL,	// 11
		6000000UL,	// 12
		8400000UL,	// 13
		11200000UL,	// 14
		14400000UL,	// 15
		18000000UL,	// 16
		26000000UL,	// 17
		32000000UL,	// 18
		40000000UL,	// 19		
		168000000UL,	// 20
		1UL, // new 21 level
		1UL, // new 22 level
		1UL, // new 23 level
		1UL, // new 24 level
		1UL, // new 25 level
		1UL, // new 26 level
		1UL, // new 27 level
		1UL, // new 28 level
		1UL, // new 29 level
		1UL // new 30 level
	};
Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Popular Days

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.