Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 19:27

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[HELP]Increase Maximum Level(LOTF)

Discussion on [HELP]Increase Maximum Level(LOTF) within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
[HELP]Increase Maximum Level(LOTF)

How do I increase maximum level, which file do I edit?
DePredaTe is offline  
Old 07/24/2009, 04:14   #2
 
elite*gold: 0
Join Date: May 2009
Posts: 874
Received Thanks: 174
Quote:
Originally Posted by DePredaTe View Post
How do I increase maximum level, which file do I edit?
first go to character.cs first search for this
Code:
 if (Exp > DataBase.NeededXP(Level) && Level < 130)
and udner that you'll see this
Code:
while (Exp > DataBase.NeededXP(Level) && Level < 130)
change both of those 130's to what ever number you want.
now go to database.cs
now search for this
Code:
            else if (Level == 129)
and then you add levels add exp to whatever level you put in the the first code!
and there you go.
Arcotemple:) is offline  
Thanks
1 User
Old 07/24/2009, 05:10   #3
 
elite*gold: 20
Join Date: May 2008
Posts: 1,103
Received Thanks: 254
next time use search there is like 3 threads on this thanks
#Request close
Pete1990 is offline  
Old 07/24/2009, 05:15   #4
 
elite*gold: 0
Join Date: Jul 2009
Posts: 548
Received Thanks: 52
for me its else if (Level == 134) :P
f0am is offline  
Old 07/24/2009, 05:45   #5
 
elite*gold: 0
Join Date: May 2009
Posts: 874
Received Thanks: 174
lol cuz your max level is 135
Arcotemple:) is offline  
Thanks
1 User
Old 07/24/2009, 22:04   #6
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Alright, I searched for it.
I found the 2 in character.cs but i didn't find the 1 in database.cs
So, i went ahead and changed those two to what i wanted (150) and now when I get to level 135, and hit 1 mob, i level strait to level 150.
Is it because I didn't change what was in database.cs?
Because I searched it, and I didn't find anything even close to that.
DePredaTe is offline  
Old 07/25/2009, 00:54   #7
 
elite*gold: 20
Join Date: Aug 2005
Posts: 1,734
Received Thanks: 1,001
Are you sure you added the below code? If you didn't, I believe LOTF returns 1 from the level exp function if the level was not listed. (the last else statement.)

Below the code you need to add 'return ***' and replace the *** with whatever integer value you wish the experience to be.

PHP Code:
else if (Level == 150
tanelipe is offline  
Old 07/25/2009, 01:23   #8
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Code:
                else if (Level == 130 || Level == 131 || Level == 132 || Level == 133 || Level == 134 || Level == 135
Are you talking about this line in character.cs? Do I just keep adding them? or are you talking about
Code:
            if (Exp > ExternalDatabase.NeededXP(Level) && Level < 135)
            {
                Leveled = true;
                while (Exp > ExternalDatabase.NeededXP(Level) && Level < 135)
I can't determine which one you guys are talking about. I think Arcotemple's source is different than mine, because he is using '129' instead of '134'
DePredaTe is offline  
Old 07/25/2009, 02:24   #9
 
elite*gold: 0
Join Date: May 2009
Posts: 874
Received Thanks: 174
im not using 129
im using 134 lol
i just posted that cuz i was pretty sure you havent edited your to say 134 yet
Arcotemple:) is offline  
Old 07/25/2009, 03:51   #10
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
Oh, well. Mine must have been previously edited. Well, do you know which one i edit?
DePredaTe is offline  
Old 07/25/2009, 03:52   #11
 
elite*gold: 0
Join Date: May 2009
Posts: 874
Received Thanks: 174
i told you already lol
just change the numbers to your needing
Arcotemple:) is offline  
Old 07/25/2009, 05:13   #12
 
elite*gold: 0
Join Date: Apr 2007
Posts: 208
Received Thanks: 43
I didn't find the one you told me to change in database.cs or anythingclose to that.
DePredaTe is offline  
Old 07/25/2009, 05:16   #13
 
elite*gold: 20
Join Date: May 2008
Posts: 1,103
Received Thanks: 254
HTML Code:
Search for this         public static ulong NeededXP(uint Level) in DataBase.cs And then AT the End Of

HTML Code:
else if (Level == 134)
                return 12437417590;
Add
HTML Code:
else if (Level == ***)
                return XXXXXXXX;
XXXX stands for the next level and the Exp needed thats all u do
Pete1990 is offline  
Thanks
1 User
Old 07/25/2009, 05:33   #14
 
elite*gold: 0
Join Date: Jul 2009
Posts: 548
Received Thanks: 52
actually

search for

Code:
 if (Exp > DataBase.NeededXP(Level) && Level < 130)
            {
                Leveled = true;
                while (Exp > DataBase.NeededXP(Level) && Level < 130)
or it might be

Code:
 if (Exp > DataBase.NeededXP(Level) && Level < 135)
            {
                Leveled = true;
                while (Exp > DataBase.NeededXP(Level) && Level < 135)
Change it to w.e number is ur highest level then...


fix your expball >< to the level of max.

Code:
else if (ItemParts[0] == "723700")
then you will find

Code:
else if (Level == 129)
                return 1073741759;
            else
                return 1;
or

else if (Level == 134)
return 12437417590;
to me it seems like its going up at like the 130s by 80m i think.

and say ur going to 140 end it at 139 and do for the next

Code:
else 
     return 1;
then edit ur reborn

Code:
else if (Level == 130
just do like

Code:
else if (Level >= 130 && Level <= 140)
{
stat stuffs
}
and walah!! you are done with your level stuffs. =]]

f0am is offline  
Thanks
1 User
Old 07/25/2009, 05:38   #15
 
elite*gold: 20
Join Date: May 2008
Posts: 1,103
Received Thanks: 254
No becuse if u dont change it inside of DataBase.cs then when u hit 135 ur 150 or what ever level ur gonna want and i just changed it inside of the umm database.cs before and it worked fine
Pete1990 is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Maximum Level
04/14/2010 - Metin2 Private Server - 14 Replies
Sup guys. Mayby does u know how to make bigger level possible than 99 in private server of metin2? If yes tell us how, say what u think about it. If u played CsYt2 u know how does it working. It's possible because in CsYt2 maximum level is 120.
[Help] How to increase the maximum level?
04/11/2010 - EO PServer Hosting - 2 Replies
Anybody know how do I put the maximum level 400? Thank you
Client 4267 Maximum Level
12/10/2009 - CO2 Private Server - 5 Replies
Can anyone remember what the maximum level for this client was? I think it was 130, but my memory is like, epic fail, so just looking for comfirmation really.



All times are GMT +1. The time now is 19:27.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.