Can someone tell me where to find the max level for character so I can make it higher then 20?
Wserver > Realm > Entities > Player > Player.Leveling.cs
Code:
if (Experience - GetLevelExp(Level) >= ExperienceGoal && Level < 20)
Change the number 20 to the level you wish to be maxed level. But fame bar will not appear on whatever level you put it as unless you edit the client as well.
Originally Posted by Riigged
Wserver > Realm > Entities > Player > Player.Leveling.cs
Code:
if (Experience - GetLevelExp(Level) >= ExperienceGoal && Level < 20)
Change the number 20 to the level you wish to be maxed level. But fame bar will not appear on whatever level you put it as unless you edit the client as well.
@B3CLAWED what riigged said but the client there is a tutorial on it
Wserver > Realm > Entities > Player > Player.Leveling.cs
Code:
if (Experience - GetLevelExp(Level) >= ExperienceGoal && Level < 20)
Change the number 20 to the level you wish to be maxed level. But fame bar will not appear on whatever level you put it as unless you edit the client as well.
Thanks for that
- - - Updated - - -
Originally Posted by Transferred
@B3CLAWED what riigged said but the client there is a tutorial on it
make sure the level you chose ni player.leveling.cs is the same as in the client or else fame bar wont show at the desired level
I'm curious if stats can be adjusted by max level :-?
For example let's take dexterity...
until level 20, max dexterity is 50
between level 20 and 50, max dexterity is 100
between level 50 and 100, max dexterity is 200