lewnidasds Posted July 5, 2015 Posted July 5, 2015 Hello everyone.I want to ask if it is possible that blessed enchant on failure "stays" on the same enchant.Ex: i enchant bow +10 to +11 but it fails.I want that the bow stays +10 and doesnt return to +3.thanks in advance
0 SweeTs Posted July 5, 2015 Posted July 5, 2015 (edited) Blessed never returns to +3, so most likely you have a custom settings for them. So, check your properties. Else, go to RequestEnchantItem and find something like this if (scrollTemplate.isBlessed()) { // blessed enchant - clear enchant value activeChar.sendPacket(SystemMessageId.BLESSED_ENCHANT_FAILED); item.setEnchantLevel(0); // self explanation item.updateDatabase(); activeChar.sendPacket(EnchantResult.UNSUCCESS); } Edited July 5, 2015 by SweeTs
0 pirama Posted July 5, 2015 Posted July 5, 2015 (edited) package net.sf.l2j.gameserver.network.clientpackets; RequestEnchantItem.java find this if (scrollTemplate.isBlessed()) { // blessed enchant - clear enchant value activeChar.sendPacket(SystemMessageId.BLESSED_ENCHANT_FAILED); item.setEnchantLevel(0); item.updateDatabase(); activeChar.sendPacket(EnchantResult.UNSUCCESS); } and change it if (scrollTemplate.isBlessed()) { // blessed enchant - clear enchant value activeChar.sendPacket(SystemMessageId.BLESSED_ENCHANT_FAILED); item.setEnchantLevel(item.getEnchantLevel()); item.updateDatabase(); activeChar.sendPacket(EnchantResult.UNSUCCESS); } edit change fail mesege Edited July 5, 2015 by pirama
0 davidmartinez Posted May 16 Posted May 16 Hi, for l2jfrozen... I want Bless Enchat to have a limit. Example: 7+ to +15 with Bless Enchat. That for +16, it doesn't allow use.
Question
lewnidasds
Hello everyone.
I want to ask if it is possible that blessed enchant on failure "stays" on the same enchant.
Ex: i enchant bow +10 to +11 but it fails.I want that the bow stays +10 and doesnt return to +3.
thanks in advance
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now