Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

L2J How can i increase max lvl of a char?

Status
Not open for further replies.
Newbie Spellweaver
Joined
Oct 1, 2005
Messages
16
Reaction score
0
hi all... anyone can tell me how i can increase the max lvl of a char? On my server max lvl is 75... if i want that max lvl is 80 how i kan do it?
 
Newbie Spellweaver
Joined
Nov 7, 2004
Messages
94
Reaction score
0
Max lvl in L2j is 80, i dont think u can change that, and if it were possible, it gotta be very complicated.
 
Upvote 0
Skilled Illusionist
Joined
May 12, 2005
Messages
327
Reaction score
0
This is posable to increase lvl till 80.
A lot of servers have it now but i don't know how to do it.
 
Upvote 0
Newbie Spellweaver
Joined
Oct 4, 2004
Messages
30
Reaction score
0
Edit source files of your l2j server
java\net\sf\l2j\gameserver\model\experience.java
and compile in Eclipse...
very easy...
 
Upvote 0
Newbie Spellweaver
Joined
Nov 7, 2004
Messages
94
Reaction score
0
Any max lvl? And if its possible, can u explain a lil better?
 
Upvote 0
Newbie Spellweaver
Joined
Oct 4, 2004
Messages
30
Reaction score
0
first maybe you look at this file coz it is really simple
public class Experience
{
public final static int LEVEL[]=
{
0, // level 0
0,
68,
363,
1168,
2884 ,
6038 ,
11287 ,
19423 ,
31378 ,
48229 , //level 10
71202 ,
101677 ,
141193 ,
191454 ,
254330 ,
331867 ,
426288 ,
540000 ,
675596 ,
835862 , //level 20
1023784 ,
1242546 ,
1495543 ,
1786379 ,
2118876 ,
2497077 ,
2925250 ,
3407897 ,
3949754 ,
4555796 , //level 30
5231246 ,
5981576 ,
6812513 ,
7730044 ,
8740422 ,
9850166 ,
11066072 ,
12395215 ,
13844951 ,
15422929 , //level 40
17137087 ,
18995665 ,
21007203 ,
23180550 ,
25524868 ,
28049635 ,
30764654 ,
33680052 ,
36806289 ,
40154162 , //level 50
45525132 ,
51262490 ,
57383988 ,
63907911 ,
70853089 ,
80700831 ,
91162654 ,
102265881,
114038596,
126509653, //level 60
146308200,
167244337,
189364894,
212717908,
237352644,
271975263,
308443198,
346827154,
387199547,
429634523, //level 70
474207979,
532694979,
606322775,
696381369,
804225364, //level 75
931275828,
1108571463,
1309482881,
1535687304,
1788937098, //level 80
2071061776
**;
**

etc., etc.
 
Upvote 0
Newbie Spellweaver
Joined
Oct 4, 2004
Messages
30
Reaction score
0
I believe it is already set in database: lvlupgain table
If U want to add more skills at higher level modify skill_trees table in database...
also skills levels and stats to be stronger in XML files in your l2j server directory...
 
Upvote 0
Status
Not open for further replies.
Back
Top