Jump to content
  • 0

Stackable Lifestone Bug


Question

Posted

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

6 answers to this question

Recommended Posts

  • 0
Posted

if (Config.LS_STACKABLE)

did you even change the config

public static boolean LS_STACKABLE;
LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False"));
  • 0
Posted
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..

  • 0
Posted

: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..

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..