Change minimun level required to add a subclass

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
paris
Posts: 12
Joined: Wed Jun 10, 2015 7:23 am

Change minimun level required to add a subclass

Post by paris »

Hi guys,

I would like players to add subclasses starting on level 40.
It's that something I can change on settings?
I was checking the Character.properties, but there is no such option there.

Kind regards.
User avatar
Flyleaf
Posts: 89
Joined: Thu Apr 30, 2015 7:34 am

Re: Change minimun level required to add a subclass

Post by Flyleaf »

You mean this config?

l2js\game\config\Character.properties

########################################################

# Allow player to sub-class without checking for unique quest items.
# Default: False
AltSubClassWithoutQuests = True

# Allow player to add/change subclass at all village master
# Default: False
AltSubclassEverywhere = True

########################################################

# Maximum number of allowed subclasses for every player.
# Default: 3
MaxSubclass = 3

# Starting level for subclasses.
# Default: 40
BaseSubclassLevel = 40

# Maximum subclass level.
# Default: 80
MaxSubclassLevel = 80

#########################################################
Sorry for my English
paris
Posts: 12
Joined: Wed Jun 10, 2015 7:23 am

Re: Change minimun level required to add a subclass

Post by paris »

Yeah, but, no...
Sorry my bad english.

Currently my characters main class have to be minimum lvl 75 in order to be able to add a subclass.
I would like my characters to be able to add subclass when the main class is minimun level 40.

On the config settings I'm able to change the subclass starting level, but that's not what I'm talking about.

Kind regards.
mars8022
Posts: 23
Joined: Tue Jan 10, 2012 1:01 am

Re: Change minimun level required to add a subclass

Post by mars8022 »

L2J_Server\java\com\l2jserver\gameserver\model\actor\instance\L2VillageMasterInstance

line: 510

if (player.getLevel() < 75)

Changed to

if (player.getLevel() < 40)
Post Reply