Hello can someone guide me how to set this for normal enchant also?
I made this in order to disable/enable blessed,crystall enchant scrolls for some itemsids but i cant understand how normal scroll can be made like that
hello guys im facing a problem with the weapons .. i want to add hero glow on s weapons arcana ,dragonic bow etc.. some weapons are work peftect .. some not for example i add the line
LineageEffect.e_u092_h for fists and didnt work didnt even get the hero glow.. and the arcana the glow is on the top of weapon not down side like hero zeus mace any ideas?.. or does anybody has the weapongrp.dat file ready ?
Question
SQL Developer
Hello can someone guide me how to set this for normal enchant also?
I made this in order to disable/enable blessed,crystall enchant scrolls for some itemsids but i cant understand how normal scroll can be made like that
Project:L2JFrozen
Requestenchantitem.java file patch -> click
if(crystalScroll && item.getItemId() <= 9208) //ItemId check { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; } if(blessedScroll && item.getItemId() >= 9208) //ItemId check { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; }i allready try mane ways like this
for (final int normalarmorscroll : NORMAL_ARMOR_SCROLLS) { if (scroll.getItemId() == normalarmorscroll) { if(normalarmorscroll && item.getItemId() >= 9208) //ItemId check { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; } } }or this
for (final int normalarmorscroll : NORMAL_ARMOR_SCROLLS) { if(normalarmorscroll && item.getItemId() >= 9208) //ItemId check { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; } }or even this T.T
if(normalarmorscroll && item.getItemId() >= 9208) //ItemId check { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; }but cant find the correct method .. thanks
Edited by L2LostWard9 answers to this question
Recommended Posts