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 Quote
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 Quote
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 Quote
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. Quote
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.