Jump to content

Recommended Posts

Posted

Well dont know if already there is.. if there is sorry

 

===============

\java\net\sf\l2j\Config.java

Put this:

	public static int			CUSTOM_ENCHANT_VALUE;

under

    public static boolean   WEDDING_ANNOUNCE;

or whatever you want

then put this

                CUSTOM_ENCHANT_VALUE                   = Integer.parseInt(Modifications.getProperty("CustomEnchantValue", "25")); 

under Wedding_announce

===============

\java\net\sf\l2j\gameserver\clientpackets\RequestEnchantItem.java

Find This

                item.setEnchantLevel(item.getEnchantLevel()+1);

 

and replace it with this:

 

               

item.setEnchantLevel(item.getEnchantLevel()+Config.CUSTOM_ENCHANT_VALUE);

 

Finally go to your Mods settings and add this

#---------------------------------------------------------------
# Custom Enchant Value                                         -
#---------------------------------------------------------------
# Enchant Value
# From +0 to +25 , from +25 to +50 etc etc
CustomEnchantValue = 25

 

Guest
This topic is now closed to further replies.


×
×
  • Create New...