DominiQue Posted December 30, 2009 Posted December 30, 2009 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] Quote
Stefoulis15 Posted January 11, 2010 Posted January 11, 2010 already shared by Intrepid years ago! Quote
Levi4than Posted January 12, 2010 Posted January 12, 2010 Interpids link doesnt work!! So this is great share for now and on! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.