Jump to content

Recommended Posts

Posted

Go to:

java.net.sf.l2j.gameserver.model.actor.instance.L2VillageMasterInstance.java

Find these lines and repleace with these new lines:       

-        final Race npcRace = getVillageMasterRace();

-        final ClassType npcTeachType = getVillageMasterTeachType();

+        getVillageMasterRace();

+        getVillageMasterTeachType();

 

Find these lines and delete theme:

 

                if (npcRace == Race.Human || npcRace == Race.Elf)

                {

                    // If the master is human or light elf, ensure that fighter-type

                    // masters only teach fighter classes, and priest-type masters

                    // only teach priest classes etc.

                    if (!availSub.isOfType(npcTeachType)) availSubs.remove(availSub);

 

                    // Remove any non-human or light elf classes.

                    else if (!availSub.isOfRace(Race.Human)

                        && !availSub.isOfRace(Race.Elf)) availSubs.remove(availSub);

                }

                else

                {

                    // If the master is not human and not light elf,

                    // then remove any classes not of the same race as the master.

                    if (!availSub.isOfRace(npcRace)) availSubs.remove(availSub);

                }

 

Go to:

java.net.sf.l2j.gameserver.model.base.PlayerClass.java

 

Find this line and delete it:

private static final Set<PlayerClass> neverSubclassed = EnumSet.of(Overlord, Warsmith);

 

Find this line and delete it:

subclasses.removeAll(neverSubclassed);

 

Now do like this:

switch (_race)

{

+ case Human:

+ subclasses.removeAll(getSet(Kamael, Third));

+ break;

+ case DarkElf:

+ subclasses.removeAll(getSet(Kamael, Third));

+ break;

case Elf:

+ subclasses.removeAll(getSet(Kamael, Third));

- break;

- case DarkElf:

+ subclasses.removeAll(getSet(Kamael, Third));

+ break;

+ case Orc:

+ subclasses.removeAll(getSet(Kamael, Third));

+ break;

+ case Dwarf:

+ subclasses.removeAll(getSet(Kamael, Third));

break;

}

@@ -294,6 +321,4 @@

else

subclasses.removeAll(EnumSet.of(femaleSoulbreaker));

- if (player.getTotalSubClasses() < 2)

- subclasses.removeAll(EnumSet.of(inspector));

}

}

Credits : x.v3ndetta :P ! [Me]

Posted

Thnx for this ,also i have a question , can you made a code that should allow all classes to take any subclass??

Posted

Thnx for this ,also i have a question , can you made a code that should allow all classes to take any subclass??

PlayerClass.java

 

            switch (_race)
            {
                case LightElf:
                    subclasses.removeAll(getSet(DarkElf, Third));
                    break;
                case DarkElf:
                    subclasses.removeAll(getSet(LightElf, Third));
                    break;
            }

  • 2 weeks later...
  • 2 months later...
  • 3 months later...
  • 10 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock