Γεια σε ολους εφτιαξα ενα code για l2j interlude ισως οχι τοσο σημαντικο αλλα μπορει να βοηθησει καποια ατομα εδω μεσα.
Παρατηρησα οτι στον l2j δεν υπηρχε enchant blessed και crystal μεσα στο other.properties
Ξεκιναμε λοιπον...
1)Ανοιγουμε eclipse παμε java/config/other.properties
Βρισκουμε..
# % Chance of succeding to enchant an item when it has a chance of breaking
EnchantChanceWeapon = 68
EnchantChanceArmor = 52
EnchantChanceJewelry = 54
Απο κατω βαζουμε...
# Chance a Crystal Enchant Scroll will succeed after safe enchant.
EnchantChanceWeaponCrystal = 85
EnchantChanceArmorCrystal = 85
EnchantChanceJewelryCrystal = 85
# Chance a Blessed Enchant Scroll will succeed after safe enchant.
EnchantChanceWeaponBlessed = 55
EnchantChanceArmorBlessed = 55
EnchantChanceJewelryBlessed = 55
Το κανουμε save...
2)Μετα παμε java/net/sf/l2j/config.java
Βρισκουμε...
ENCHANT_CHANCE_JEWELRY = Integer.parseInt(otherSettings.getProperty("EnchantChanceJewelry", "54"));
Απο κατω βαζουμε...
ENCHANT_CHANCE_WEAPON = Integer.parseInt(otherSettings.getProperty("EnchantChanceWeaponCrystal", "85"));
ENCHANT_CHANCE_ARMOR = Integer.parseInt(otherSettings.getProperty("EnchantChanceArmorCrystal", "85"));
ENCHANT_CHANCE_JEWELRY = Integer.parseInt(otherSettings.getProperty("EnchantChanceJewelryCrystal", "85"));
ENCHANT_CHANCE_WEAPON = Integer.parseInt(otherSettings.getProperty("EnchantChanceWeaponBlessed", "55"));
ENCHANT_CHANCE_ARMOR = Integer.parseInt(otherSettings.getProperty("EnchantChanceArmorBlessed", "55"));
ENCHANT_CHANCE_JEWELRY = Integer.parseInt(otherSettings.getProperty("EnchantChanceJewelryBlessed", "55"));
Save και ειμαστε ok ;)
Tested l2j interlude working!!! ;)