Jump to content

Question

Posted (edited)

IS THAT SO DIFFICULT TO F*ING ANSWER TO MY TOPICS? I HAVE A F*ING LS/BOG PROBLEM!

MY LS/BOGS ARE STACKABLE AND WHEN I USE 1 LS ALL OF THEM GONE, BYE BYE, DISSAPEARED .

LIFESTONES/BOGS ARE DISSAPEARING FROM INVETORY AFTER 1AUGMENT OR 1SKILL ENCHANT. 

 I HAVE THIS CODE BUT DOESN'T WORK 

OH L2JFrozen rev 1132.

Edited by scraw

10 answers to this question

Recommended Posts

  • 1
Posted
  On 3/24/2020 at 4:37 PM, Mantosh said:

If you ask for help, be kind enough to share the fix with the rest, one day someone might need it. Thanks

Expand  

you're right . solution was that code in l2jfrozen/gameserver/network/clientpackets/RequestRefine.java

	@code line 250	
// consume the life stone

            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;
		
		// consume the gemstones

 

  • Thanks 1
  • 0
Posted

you just make mistake some where..

maybe 

Config.LS_STACKABLE

are not TRUE.

you can just check/log what happening in RequestRefine.java when u click refine..

  • 0
Posted
  On 3/23/2020 at 6:44 PM, wongerlt said:

you just make mistake some where..

maybe 

Config.LS_STACKABLE

are not TRUE.

you can just check/log what happening in RequestRefine.java when u click refine..

Expand  

what do u mean ? im my config its true..

  • 0
Posted (edited)

then just something wrong in java or u not update server gameserver lib.

u can do simple log to check.. requestrefine.java

		if (Config.LS_STACKABLE)
		{
player.sendMessage("LS STACKABLE BLABLA");
	       if(!player.destroyItem("RequestRefine", refinerItem.getObjectId(), 1, null, false))
	         return false;
		}
		else if (!player.destroyItem("RequestRefine", refinerItem, null, false))
		return false;

 

Edited by wongerlt
Guest
This topic is now closed to further replies.


×
×
  • Create New...