This isn't a forum where you can download or buy a full custom server lol
You must learn by yourself how to add what do you want
Anyway there you can set max enchant +25 and max safe +10
Code: Select all
Index: gameserver/config/Character.properties===================================================================--- gameserver/config/Character.properties (revision 7664)+++ gameserver/config/Character.properties (working copy)@@ -325,1 +325,19 @@# This is the enchant limit, if set to 0, there will be no limit.# Example: If this is set to 10, the maximum enchant will be 10.# Default: 0, 0, 0-EnchantMaxWeapon = 0+EnchantMaxWeapon = 25-EnchantMaxArmor = 0+EnchantMaxArmor = 25-EnchantMaxJewelry = 0+EnchantMaxJewelry = 25 # This is the maximum safe enchant.# Notes:# If EnchantSafeMax is set to for 8 the item will be safely enchanted to 8 regardless of the max enchant value set above.# EnchantSafeMaxFull is for full body armor (upper and lower).# These values should always be greater than 0.# Default: 3, 4-EnchantSafeMax = 3+EnchantSafeMax = 10-EnchantSafeMaxFull = 4+EnchantSafeMaxFull = 10
Here you can set all players heroes at login
Code: Select all
Index: java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java===================================================================--- java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java (revision 4413)+++ java/com/l2jserver/gameserver/network/clientpackets/EnterWorld.java (working copy)@@ -277,4 +277,29 @@ // Set Hero status if it applies if (Hero.getInstance().getHeroes() != null && Hero.getInstance().getHeroes().containsKey(activeChar.getObjectId())) activeChar.setHero(true);++ // Set All Chars Heroes+ if (Config.ALL_CHARS_ARE_HEROES)+ {+ if(!activeChar.isHero())+ activeChar.setHero(true);+ } setPledgeClass(activeChar);Index: java/com/l2jserver/Config.java===================================================================--- java/com/l2jserver/Config.java (revision 4413)+++ java/com/l2jserver/Config.java (working copy)@@ -801,2 +801,40 @@ public static String ANNOUNCE_PK_MSG; public static String ANNOUNCE_PVP_MSG;+ public static boolean ALL_CHARS_ARE_HEROES; public static boolean L2JMOD_CHAT_ADMIN; public static boolean L2JMOD_MULTILANG_ENABLE;@@ -2956,6 +2956,102 @@ ANNOUNCE_PVP_MSG = L2JModSettings.getProperty("AnnouncePvpMsg", "$killer has defeated $target");+ + ALL_CHARS_ARE_HEROES = Boolean.parseBoolean(L2JModSettings.getProperty("AllCharsAreHeroes", "False")); L2JMOD_CHAT_ADMIN = Boolean.parseBoolean(L2JModSettings.getProperty("ChatAdmin", "false"));Index: java/config/l2jmods.properties===================================================================--- java/config/l2jmods.properties (revision 4413)+++ java/config/l2jmods.properties (working copy)@@ -735,1 +735,46 @@# variables: $killer, $targetAnnouncePvpMsg = $killer has defeated $target -+# Do you want to set all players Heroes (at login) ?+# Default: False+AllCharsAreHeroes = False+# ---------------------------------------------------------------------------# Chat Moderation# ---------------------------------------------------------------------------
Then..there are a lot of events, just use search on this forum or on google
At last..don't create a farm zone, search other methods to give at your server a new look