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!

Initial level when creating a character

Newbie Spellweaver
Joined
Dec 30, 2017
Messages
31
Reaction score
1
Guys, where to change the initial level when creating a character? By default, when creating a character, the 6th level is given! Where does this change?
 
Experienced Elementalist
Joined
Jun 17, 2014
Messages
273
Reaction score
33
You will find the answer on the forum, this question has been answered.
 
Upvote 0
Banned
Banned
Joined
Dec 3, 2010
Messages
1,581
Reaction score
619
You will find the answer on the forum, this question has been answered.
So far I know it's just reported and not working with initial release (need to recompile). papka fixed it already, so far I know is wrong packet data but noone gave info how to fix it

 
Upvote 0
Experienced Elementalist
Joined
Jun 17, 2014
Messages
273
Reaction score
33
Oh ok, my bad. I guess I thought about an other issue and its answer.
 
Upvote 0
Newbie Spellweaver
Joined
Nov 25, 2009
Messages
34
Reaction score
8
I believe its here:
src\main\java\com\bdoemu\gameserver\model\creature\player\services\PlayerSaveService.java

Line 61 to 65.
for (int l = 2; l <= 6; ++l) {
player.setLevel(l);
player.setExp(300);
player.onLevelChange(false);
}
Maybe just comment those lines.

Dont forget to recompile. I havent test it.
 
Upvote 0
Banned
Banned
Joined
Dec 3, 2010
Messages
1,581
Reaction score
619
I believe its here:
src\main\java\com\bdoemu\gameserver\model\creature\player\services\PlayerSaveService.java

Line 61 to 65.

Maybe just comment those lines.

Dont forget to recompile. I havent test it.
Yea but so far I know if u modify that then characters don't get exp from mobs quests etc at all coz of packet data

 
Upvote 0
Newbie Spellweaver
Joined
Nov 25, 2009
Messages
34
Reaction score
8
Tested it.
Tk8oak8 - Initial level when creating a character - RaGEZONE Forums

This is after character created. Level 1.

And this is after killing some monsters. (note: i set my exp rate to 15x - wanna make a pvp server lol.)
FoFglW - Initial level when creating a character - RaGEZONE Forums

Level gained to 7. I'll test it on other class later
 

Attachments

You must be registered for see attachments list
Upvote 0
Back
Top