Jump to content

Ls/bogs/scrolls Stackable [L2Jfrozen] Fully Working


Recommended Posts

On 3/18/2016 at 11:28 PM, DrenepiaWorld said:

Since i saw that a lot of people looking for this code cause the one that it's already shared here is not working since don't have the client side files as well.

Anyway.

 

Core Side:


### Eclipse Workspace Patch 1.0
#P L2jFrozen_GameServer
Index: head-src/com/l2jfrozen/Config.java
===================================================================
--- head-src/com/l2jfrozen/Config.java  (revision 938)
+++ head-src/com/l2jfrozen/Config.java  (working copy)
@@ -2343,6 +2343,8 @@
        public static int MONSTER_RETURN_DELAY;
      
        public static boolean SCROLL_STACKABLE;
+       public static boolean LS_STACKABLE;
+       public static boolean BOG_STACKABLE;

        public static boolean ALLOW_VERSION_COMMAND;
        public static boolean ALLOW_CHAR_KILL_PROTECT;
@@ -2469,6 +2471,8 @@
                        ALT_PLAYER_PROTECTION_LEVEL = Integer.parseInt(L2JFrozenSettings.getProperty("AltPlayerProtectionLevel", "0"));
                        MONSTER_RETURN_DELAY = Integer.parseInt(L2JFrozenSettings.getProperty("MonsterReturnDelay", "0"));
                        SCROLL_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ScrollStackable", "False"));
+                       LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False"));
+                       BOG_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("BOGStackable", "False"));
                        ALLOW_CHAR_KILL_PROTECT = Boolean.parseBoolean(L2JFrozenSettings.getProperty("AllowLowLvlProtect", "False"));
                        CLAN_LEADER_COLOR_ENABLED = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ClanLeaderNameColorEnabled", "true"));
                        CLAN_LEADER_COLORED = Integer.parseInt(L2JFrozenSettings.getProperty("ClanLeaderColored", "1"));
Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java  (revision 938)
+++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java  (working copy)
@@ -246,7 +246,12 @@
                }

                // 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;

                // consume the gemstones
Index: config/functions/l2jfrozen.properties
===================================================================
--- config/functions/l2jfrozen.properties       (revision 938)
+++ config/functions/l2jfrozen.properties       (working copy)
@@ -188,6 +188,8 @@

# Scroll is Stackable? (default = false)
ScrollStackable = false
+LSStackable = false
+BOGStackable = false

# -------------------------------------------
# Clan Leader Color Config -
Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java  (revision 938)
+++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java  (working copy)
@@ -135,7 +135,10 @@
                                                return;
                                        }
                                        // ok
-                                       player.destroyItem("Consume", spb, trainer, true);
+                                       if (Config.BOG_STACKABLE)
+                                               player.destroyItem("Consume", spbId, 1, trainer, true);
+                                       else
+                                               player.destroyItem("Consume", spb, trainer, true);
                                }
                        }
                        else

 

i copy the code into l2frozen-core.java and edit it as u did .but still after i use a lifestone(55) or bog(55) all of them 55 both dissappeared .i have also edit ls in navicat to  be stackable

Edited by scraw
Link to comment
Share on other sites

On 3/18/2016 at 11:42 PM, SQL Developer said:

Thanks for that mate is a ondate guide with client and core edits

isnt work for me.. in-game i have 100 ls like  ~> lifestone (100) but when i use 1 for augment all of them dissappeared! 

Link to comment
Share on other sites

  • 4 months later...

Fixed.

 

if (Config.BOG_STACKABLE)
player.destroyItem("Consume", spbId, 1, trainer, true);
else
player.destroyItem("Consume", spb, trainer, true);


Change to >>>>>

if (Config.BOG_STACKABLE)
player.destroyItem("Consume", spb.getObjectId(), 1, trainer, true);
else
player.destroyItem("Consume", spb, trainer, true);

  • Upvote 1
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.

Guest
Reply to this topic...

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