Quote:
Originally Posted by DePredaTe
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.