Jump to content
  • 0

How To Make Maximilian To Have All Subclasses?


teamviewer

Question

4 answers to this question

Recommended Posts

  • 0

Hi do you know guys how to make Maximilian To Have All Subclasses?

I got acis pack :)

Index: dist/config/players.properties
===================================================================
--- dist/config/players.properties (revision 5)
+++ dist/config/players.properties (working copy)
@@ -284,6 +284,10 @@
# Allow player subclass addition without checking for unique quest items.
AltSubClassWithoutQuests = False

+# Allow player to add/change subclass at all village master
+# Default: False
+AltSubclassEverywhere = False
+
#=============================================================
# Buffs config
#=============================================================
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java (revision 5)
+++ java/net/sf/l2j/Config.java (working copy)
@@ -489,6 +489,7 @@
public static boolean ES_SP_BOOK_NEEDED;
public static boolean DIVINE_SP_BOOK_NEEDED;
public static boolean ALT_GAME_SUBCLASS_WITHOUT_QUESTS;
+ public static boolean ALT_GAME_SUBCLASS_EVERYWHERE;

/** Buffs */
public static boolean STORE_SKILL_COOLTIME;
@@ -1110,6 +1111,7 @@
ES_SP_BOOK_NEEDED = players.getProperty("EnchantSkillSpBookNeeded", true);
DIVINE_SP_BOOK_NEEDED = players.getProperty("DivineInspirationSpBookNeeded", true);
ALT_GAME_SUBCLASS_WITHOUT_QUESTS = players.getProperty("AltSubClassWithoutQuests", false);
+ ALT_GAME_SUBCLASS_EVERYWHERE = players.getProperty("AltSubclassEverywhere", false);

BUFFS_MAX_AMOUNT = players.getProperty("MaxBuffsAmount", 20);
STORE_SKILL_COOLTIME = players.getProperty("StoreSkillCooltime", true);
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2VillageMasterInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2VillageMasterInstance.java (revision 5)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2VillageMasterInstance.java (working copy)
@@ -613,6 +613,8 @@
*/
public final boolean checkVillageMaster(PlayerClass pclass)
{
+ if (Config.ALT_GAME_SUBCLASS_EVERYWHERE)
+ return true;
return checkVillageMasterRace(pclass) && checkVillageMasterTeachType(pclass);
}

Add This Code,,,

Edited by Reborn12
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...