Jump to content
  • 0

[Help] Enchant


Question

11 answers to this question

Recommended Posts

  • 0
Posted

go to net/sf/l2j/gameserver/clientpackets open RequestEnchantItem.java

 

and fint lines:

            	item.setEnchantLevel(item.getEnchantLevel()+1);
            	item.updateDatabase();

 

Change +1 To +30

  • 0
Posted

go to net/sf/l2j/gameserver/clientpackets open RequestEnchantItem.java

 

and fint lines:

            	item.setEnchantLevel(item.getEnchantLevel()+1);
            	item.updateDatabase();

 

Change +1 To +30

yes but thats is for all scrolls right?? i want only for blessed..

  • 0
Posted

It was explained XXX times, its so hard to use search?

 

And lekino posted soultion alread, so..?

  • 0
Posted

It was explained XXX times, its so hard to use search?

 

And lekino posted soultion alread, so..?

explained? where? how to make ONLY BLESSED scrolls to go +30 ?

  • 0
Posted

So You can create simple check..

 

You can try to create something like:

 

				if(scrollTemplate.isBlessed())
				item.setEnchantLevel(item.getEnchantLevel() + 1);

			else
				item.setEnchantLevel(item.getEnchantLevel() + 30);

  • 0
Posted

So You can create simple check..

 

You can try to create something like:

 

				if(scrollTemplate.isBlessed())
				item.setEnchantLevel(item.getEnchantLevel() + 1);

			else
				item.setEnchantLevel(item.getEnchantLevel() + 30);

thx u gave me an idea i will try it ;)

Guest
This topic is now closed to further replies.


×
×
  • Create New...