Jump to content
  • 0

Stackable Lifestone Bug


L2iFeel

Question

Hello to all.

I tried to change life stone to stackable.
I have change already at database consume_type to "stackable" and at system from etcitemgrp.dat I searched for the id 8762 top grade life stone and I have do it like that.
 

2	8762	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i03					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0

RequestRefine:

// consume the life stone
		if(!player.destroyItem("RequestRefine", refinerItem, null, false))
			if (Config.LS_STACKABLE)
			{
						if(!player.destroyItem("RequestRefine", refinerItem.getObjectId(), 1, null, false))
								return false;
						}
						else if(!player.destroyItem("RequestRefine", refinerItem, null, false))
			return false; 

But does not work beacuse if I had 50 lifestones, he consume all of them:

Untitled.jpg

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

if (Config.LS_STACKABLE)

did you even change the config

public static boolean LS_STACKABLE;
LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False"));
Link to comment
Share on other sites

  • 0
public static boolean LS_STACKABLE;
LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False"));

 

:okey: :okey: :gusta: :gusta:

 

--

 

Have you added the config into your l2jfrozensettings and set it true? As you can see by default it's false..

Link to comment
Share on other sites

  • 0

:okey: :okey: :gusta: :gusta:

 

--

 

Have you added the config into your l2jfrozensettings and set it true? As you can see by default it's false..

# Scroll BoG & LS is Stackable? (default = false)
ScrollStackable = True
LSStackable = True

Yep..

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...