Jump to content

Recommended Posts

  • 2 weeks later...
Posted

Go to Eclipse Found this :

 

com.l2jfrozen.gameserver.model.actor.instance.L2VillageMasterInstance.java

 

 

Found :

 

- final PlayerRace npcRace = getVillageMasterRace();
- final ClassType npcTeachType = getVillageMasterTeachType();
+ getVillageMasterRace();
+ getVillageMasterTeachType();
 
 
Next Remove That :
 
-if(npcRace == PlayerRace.Human || npcRace == PlayerRace.LightElf)
- {
- // 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);
- }
- else if(!availSub.isOfRace(PlayerRace.Human) && !availSub.isOfRace(PlayerRace.LightElf))
- {
- 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(npcRace != PlayerRace.Human && npcRace != PlayerRace.LightElf && !availSub.isOfRace(npcRace))
- {
- availSubs.remove(availSub);
- }
- }
 
If Now Would You like to Inside Dominator For All Characters go to :
 
com.l2jfrozen.model.base.PlayerClass.java
 
And Delete this :
 
-
- private static final Set<PlayerClass> neverSubclassed = EnumSet.of(Overlord, Warsmith);
 
this :
 
- subclasses.removeAll(neverSubclassed);
-
 
And this :
 
-
- subclasses.removeAll(neverSubclassed);
 
 
Poio analitika den ginete...!!
  • 6 years later...
  • 1 year later...

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...