flushing Posted February 28, 2009 Posted February 28, 2009 how can i make hero weapons be enchanted? i mean i have max enchant +16 andi want heros to enchant their hero weapons but when i click enchant it does not enchant it. Can anyone tell me how can i enable it? im usingl2jarchid pack interlude
0 Emrys Posted March 1, 2009 Posted March 1, 2009 There is an option in config files that it says enchantheroweapons=false do it true!
0 fdLP. Posted March 1, 2009 Posted March 1, 2009 try this : Index: RequestEnchantItem.java =================================================================== --- RequestEnchantItem.java (revision 2797) +++ RequestEnchantItem.java (working copy) @@ -86,7 +86,7 @@ } // can't enchant rods, hero weapons, adventurers' items,shadow and common items - if (item.getItem().getItemType() == L2WeaponType.ROD || item.isHeroItem() || item.getItemId() >= 7816 && item.getItemId() <= 7831 || item.isShadowItem() || item.isCommonItem()) + if (item.getItem().getItemType() == L2WeaponType.ROD || item.getItemId() >= 7816 && item.getItemId() <= 7831 || item.isShadowItem() || item.isCommonItem()) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); activeChar.setActiveEnchantItem(null);
0 DāЯқŜiĐє Posted March 1, 2009 Posted March 1, 2009 There is an option in config files that it says enchantheroweapons=false do it true! The easy way but you can do it with java modding like Mafia said...Choose :P
0 flushing Posted March 1, 2009 Author Posted March 1, 2009 i can not find it in config files and whatever mafia said thanks dude but i dont know where to edit that can ya tell me that also ?
0 fdLP. Posted March 1, 2009 Posted March 1, 2009 its inside your packs core , net.sf.l2j.clientpackets.requestenchantitem.java or net.sf.l2j.network.clientpackets.requestenchantitem.java
0 flushing Posted March 1, 2009 Author Posted March 1, 2009 l2archid-core-1.0.0 i found this file executable java file but icant open it. do i need some kind of program rather than java ?
0 fdLP. Posted March 1, 2009 Posted March 1, 2009 you need packs source code , if u dont have it then you cant apply the patch
0 flushing Posted March 1, 2009 Author Posted March 1, 2009 no i dont have it. is there any other way to do that? i mean in my configs there is nothing to make true for enchantheroweapons is there other way?
0 fdLP. Posted March 1, 2009 Posted March 1, 2009 u gotta read how to checkout and compile a pack via an svn , get your svn http://svn.assembla.com/svn/l2jarchid/
0 -Mr.CuTe- Posted March 2, 2009 Posted March 2, 2009 i need help too with this.please help me i didnt understand how to do it i cant find this one->net.sf.l2j.network.clientpackets.requestenchantitem.java
0 zunix Posted March 3, 2009 Posted March 3, 2009 u have to change it in the source not when ur server is already compiled
0 -Mr.CuTe- Posted March 3, 2009 Posted March 3, 2009 is there any other way to do this???i mean if i add them with a new sql in the db and add new weapon id's in the system but these new weapons wll have the texture of the hero???please if anyone can help me do the heros enchantable i will apriciate it!!!add me on msn if u know how ...tnx spokerakos@hotmail.com
0 DāЯқŜiĐє Posted March 3, 2009 Posted March 3, 2009 so i change this one with yours right?? / can't enchant rods, hero weapons and shadow items if(item.getItem().getItemType() == L2WeaponType.ROD || item.getItemId() >= 6611 && item.getItemId() <= 6621 || item.isShadowItem()) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return;
0 3xpl0it3R Posted March 4, 2009 Posted March 4, 2009 See in your config folder a file named : enchant.properties. Then find that line : # Enchant hero weapons? (default: Fals) EnchantHeroWeapons = True I hope i help you a litle. Sorry for my bad english.
Question
flushing
how can i make hero weapons be enchanted? i mean i have max enchant +16 andi want heros to enchant their hero weapons but when i click enchant it does not enchant it. Can anyone tell me how can i enable it? im usingl2jarchid pack interlude
17 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