Jump to content

Ls/bogs/scrolls Stackable [L2Jfrozen] Fully Working


Recommended Posts

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

Client Side (etcitemgrp.dat):

Replace scrolls grp with these

2	729	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i04					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	730	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i04					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	731	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	1	0
2	732	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	1	0

2	947	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i03					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	948	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i03					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	949	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	950	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	951	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i02					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	952	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i02					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	953	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	954	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	955	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	956	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	957	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	958	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	959	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i05					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	960	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i05					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	961	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_weapon_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	962	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_scroll_of_enchant_armor_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0

2	6569	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_wp_a_i04					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6570	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_am_a_i04					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6571	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_wp_b_i03					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6572	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_am_b_i03					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6573	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_wp_c_i02					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6574	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_am_c_i02					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6575	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_wp_d_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6576	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_am_d_i01					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6577	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_wp_s_i05					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0
2	6578	0	3	6	3	0	dropitems.drop_scroll_m00			dropitemstex.drop_scroll_t00			icon.etc_blessed_scrl_of_ench_am_s_i05					0	120	18	0	0	1		1		ItemSound.itemdrop_scroll		2	0	0

Replace ls with these



2	8723	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8724	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8725	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8726	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8727	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8728	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8729	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8730	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8731	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8732	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_general_t00			icon.etc_mineral_general_i03					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8733	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8734	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8735	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8736	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8737	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8738	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8739	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8740	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8741	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8742	0	3	3	3	0	dropitems.drop_mineral_general_m00			dropitemstex.drop_mineral_special_t00			icon.etc_mineral_special_i03					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8743	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8744	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8745	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8746	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8747	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8748	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8749	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8750	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8751	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8752	0	3	3	3	0	dropitems.drop_mineral_rare_m00			dropitemstex.drop_mineral_rare_t00			icon.etc_mineral_rare_i03					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8753	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i00					0	2	53	0	1769984	1		1		ItemSound.itemdrop_mold		2	0	0
2	8754	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8755	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8756	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i00					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8757	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8758	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i01					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8759	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8760	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
2	8761	0	3	3	3	0	dropitems.drop_mineral_unique_m00			dropitemstex.drop_mineral_unique_t00			icon.etc_mineral_unique_i02					0	2	53	0	0	1		1		ItemSound.itemdrop_mold		2	0	0
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



And bogs with these

2	6622	0	0	2	5	0	dropitems.drop_sack_m00			dropitemstex.drop_sack_t00			icon.etc_codex_of_giant_i00					0	10	18	0	0	1		1		ItemSound.itemdrop_sack		2	0	0



Credits for the code: Slash

Credits for the Client Side: RSantos

  • Like 1
  • Thanks 1
Link to comment
Share on other sites

My friend, do you have the link to download the l2jFrozen pack? Im trying so hard to find a good pack and work with it, I am Web designer and c++ programmer and I would like to learn Java too 

Link to comment
Share on other sites

My friend, do you have the link to download the l2jFrozen pack? Im trying so hard to find a good pack and work with it, I am Web designer and c++ programmer and I would like to learn Java too 

and you choose l2jfrozen to do this? XDD

if you really want to learn java and test your self get aCis and start work on it, it's clean source and the best source you can find for IL

Link to comment
Share on other sites

and you choose l2jfrozen to do this? XDD

if you really want to learn java and test your self get aCis and start work on it, it's clean source and the best source you can find for IL

 

Because I'm newbie and some people told me to start with l2jFrozen or l2jFree, whatever, the L2jAcis is paid but not free , right? how much cost???

Link to comment
Share on other sites

If you want to learn, you can use free revision. You don't have to pay. If you want to build a server, go with frozen.

Link to comment
Share on other sites

Because I'm newbie and some people told me to start with l2jFrozen or l2jFree, whatever, the L2jAcis is paid but not free , right? how much cost???

as SweeTs said you can take the free version but even the paid version is cheap, you pay 10 Euro for 10 revs which is nothing if you see the work they do and also it's like 10 Eur/month, they don't make just 1 change per rev they do a lot of changes so it worths. Plus you have a stable server and clean so you can try you skills by adding w/e you want

Link to comment
Share on other sites

If you want to learn, you can use free revision. You don't have to pay. If you want to build a server, go with frozen.

 Well, my problem is that I cannot find any link for the frozen pack. If you have the link please send to me so I can keep the pack with me.

 

 

as SweeTs said you can take the free version but even the paid version is cheap, you pay 10 Euro for 10 revs which is nothing if you see the work they do and also it's like 10 Eur/month, they don't make just 1 change per rev they do a lot of changes so it worths. Plus you have a stable server and clean so you can try you skills by adding w/e you want

My friend, I agree with you that the paid version is cheap (10 Euro/ month it's cheap for me:D).

But I don't understand what is the 10 revs. can you explain little more about it?

 

 

Thank you very much

Link to comment
Share on other sites

 My friend, I agree with you that the paid version is cheap (10 Euro/ month it's cheap for me:D).

But I don't understand what is the 10 revs. can you explain little more about it?

 

 

Thank you very much

I will explain it so you can get it.

Every one rev is a new update for the project (fixes) read more info here so you can get my point: http://acis.i-live.eu/index.php?topic=30.255

(Changeset 356 for example means, changes in rev 356, Changeset 357 means changes in rev 357 and so on)

Link to comment
Share on other sites

 Well, my problem is that I cannot find any link for the frozen pack. If you have the link please send to me so I can keep the pack with me.

Google is a powerful tool.

 

http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/

  • Like 1
Link to comment
Share on other sites

  • 7 months later...

i did everything without errors and still not working..

 

EDIT : it's working great...

p.s DONT FORGET TO CHANGE SCROLLS/BOGS/LIFESTONES TO --> STACKABLE...FROM YOUR DATABASE ( NAVICAT )

Edited by protoftw
Link to comment
Share on other sites

  • 3 months later...
===================================================================
--- 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

is that correct? Because i have 5 bogs, enchanting all skills and my bog's not gone. I can with 1 bog enchant all skills two.

Edited by Kuzuv
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
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.



  • Posts

    • Well, sorry not sorry for resurrecting old topic, but I believe it's ultimately stupid to implement license checks like Vilmis did 🙂   private static String url = "jdbc:mysql://185.80.128.233/" + getData("Zm9ydW1fZGI="); private static String username = getData("bXJjb3B5cmlnaHQ="); private static String password = getData("Y29weXJpZ2h0XzEyMw=="); con = GlobalDB.getInstance().getConnection(); PreparedStatement statement; statement = con.prepareStatement("SELECT field_6 from core_pfields_content WHERE member_id = ?"); statement.setInt(1, Config.FORUM_USER_ID); ResultSet rset = statement.executeQuery();   This awesome way of coding things leaves us with base64-encoded credentials and DB exposed and accessible globally 😉 Btw he checks his licensing data from some plugin generated table his forum uses. Vilmis took action and ensured that mrcopyright user would have only needed accesses and rights for this operation. But he forgot to ensure that his INFORMATION_SCHEMA database would not be exposed and readable... That leads us to fully readable server variables like version used (10.1.26-MariaDB-0+deb9u1 - pretty ancient DB and OS, I'd assume). From here you can go south and do some kinky stuff, if you want and have knowledge for that. But who cares, right?   Ooh, table core_pfields_content field_6 is IP address which is checked by FORUM_USER_ID. Yep, you can query all IP addresses there (124 of them right now) and also do whatever you want with them! 🙂  The most fun part? Files source has been shared what, more than 2 years ago?  Vilmis still uses very same credentials and never changed it after sources exposure - who cares. Although, "sources" may be way too strong word here. If anyone still use paid Orion versions, I'd suggest packing your shit and leaving immediately, or at least fix this incompetent fool caused problems. It's obvious Vilmis don't care or maybe doesn't even know from the first place how to solve this problem (hint hint - tiny PHP Rest API microservice which would do absolutely the same but without exposing sensitive data?). By doing that, he exposes his infrastructure and YOUR data, and he does that for more than 2 years now 🙂 Developer of century!    
    • rename the l2.bin into l2.exe
    • L2LIVE.PRO- Dynamic Mid-rates Essence Seven Signs GRAND OPENING - July 5, 20:00 GMT+3 (EEST) TEST SERVER IS OPEN - COME AND CHECK IT OUT TODAY! Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu   Server description * EXP/SP: Dynamic (x1- x100 based on your level, *before* Sayha and EXP buffs * Adena: x50 / Item Drop: x10 / Fishing EXP increased / Attribute EXP increased * Simplified gameplay to stay in the loop while not spending hours and hours farming * Starter Pack containing very useful items for beginners * MP replenishing potions with auto-consumption * No overpowered donations L2LIVE shop * All spellbook coupons, pet spellbook coupons and master books are sold via Game Assistant * Additionally you can buy SP pouches, enchanted talismans, pet training guides and various other consumables for Adena and L-Coin * More items such as cloaks, more talismans, agathions, belts, pendants, enchantment scrolls of various grades, evolution stones, etc will be added! Shop server as a shortcut, and all retail-like ways of earning items are still here! L-Coins * Drops with small change and in random amounts from Lv60+ monsters  * All raidbosses drop random amount of L-Coin Pouches generating up to 420 Lcoin per unit. **Grand Olympiad and Events** * Grand Olympiad is held week day * Format is 1v1, unlimited weekly fights  * Heroes are declared weekly at Sunday * There are three automated events - TvT, CTF and Deathmatch, running at evenings * Orc Fortress, Battle with Balok, Keber Hunter, Archievements Box, Daily Gift Calendar provisional events are active too Custom user commands * .offlineplay command, your character will keep playing till death or server restart * .offlineshop command, keeps your shop sitting until all items are purchased * .apon / .apoff - enable/disable HP/MP autoconsume And lots of other small improvements are waiting for you!   Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu
  • Topics

×
×
  • Create New...