Page 1 of 1

Change minimun level required to add a subclass

Posted: Fri Jun 19, 2015 2:53 am
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.

Re: Change minimun level required to add a subclass

Posted: Fri Jun 26, 2015 10:43 pm
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

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

Re: Change minimun level required to add a subclass

Posted: Sun Jun 28, 2015 7:15 pm
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.

Re: Change minimun level required to add a subclass

Posted: Tue Jun 30, 2015 12:16 pm
by mars8022
L2J_Server\java\com\l2jserver\gameserver\model\actor\instance\L2VillageMasterInstance

line: 510

if (player.getLevel() < 75)

Changed to

if (player.getLevel() < 40)