Jump to content

Recommended Posts

Posted

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
Posted

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 

Posted

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

Posted

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???

Posted

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.

Posted

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

Posted

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

Posted

 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)

Posted

 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
  • 7 months later...
Posted (edited)

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
  • 3 months later...
Posted (edited)
===================================================================
--- 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

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

    • Web: https://cheatcenter.net/ Apex Legends Phoenix Macro We are excited to introduce our new development, Phoenix private macros for Apex Legends. Recently, it has become harder to develop stable and undetectable cheats for Apex, so we decided to add a safer option to our range. Our macros offer a revolutionary solution in the world of Apex scripts and macros. Everything is launched and configured through a convenient menu and works with all weapons and computer mouse models. So, our program is very user-friendly. Phoenix Macros provide you with an advantage in the game while minimizing the risk of your account being banned. In addition, we offer our program at a very affordable price. If you don't want to risk using cheats, then Phoenix Macro is perfect for you! Product Description Weapon recoil control (Apex Macros) Enable - You can enable/disable the macro during the game Weapon - the choice of weapons with which the macro will work Works with all weapons in the game Scopes - works with all scopes in the game Attachments - works with all weapon mods in the game Control X / Y - adjustment of vertical and horizontal recoil Auto-detection of weapons in your arms Auto-detection of weapon modules Hipfire - macro works when you shoot from the hip (not aiming) Legit Mode - is a safer way to control recoil List of supported weapons (Script / Macros for All Weapons) R99 R301 Alternator RE45 Flatline Spitfire C.A.R. Hemlock Rampage Devotion Volt P2020 SCOUT G7 Havoc PDW L-Star w30-30 Nemesis List of supported modules for guns Double Tap Trigger Turbocharger 2x HCOG "Bruiser" 1x-2x Variable Holo 3x HCOG "Ranger" 2x-4x Variable AOG Barrel Stabilizer Laser Sight Add. Script Features (Phoenix Macro) Binds - bind keys to select the desired weapon Autodetection - automatic detection of weapons in hands when holding a key Selector Circle - a convenient window for selecting weapons (in the form of a circle / wheel) Anti OBS - hide the script window and menu on screenshots and when recording via OBS Languages - English, French, German, Italian, Polish, Portuguese (Brazilian), Russian, Spanish and Turkish Use Controller - phoenix macro for apex works with gamepads
    • Web: https://cheatcenter.net/ Apex Legends Dullwave Hack The private cheat Dullwave for Apex Legends. What sets this product apart is its balance and high quality, with a Loot ESP feature offering a wide range of settings. The primary function of the software is the AIM, specifically a vector-based system, perfect for both Legit and Semi-Rage playstyles. The next menu option is Loot. The item ESP is highly effective, with a variety of settings and categories, making it both visually appealing and user-friendly. Player ESP also matches the quality of AIM and Loot, providing a full-featured player display with smooth performance and multiple customization options. Notably, the Dullwave cheat stands out for its excellent performance and minimal risk of getting banned. If you're looking to try something new and reliable in the realm of Apex Legends cheats, Dullwave is an outstanding choice. Product Description AIM Enabled - enable aimbot, aiming assistance when shooting Bind - select a key to activate the aimbot (hold) Bone - body parts that the aimbot will target FOV - the size of the aimbot's working area Draw FOV - show the aimbot's working area as a circle around the sight Smooth - the smoothness of the aimbot, the smoother the aimbot is Prediction - predicting the enemy's trajectory Visible Check - only target enemies not behind walls Draw Snapline - draw a line to the current aimbot target Dynamic Smooth - dynamic smoothness, depending on the situation Ignore Knocked - ignore knocked enemies Max Distance - limit the range of the aim ESP (Wallhack) Max Distance - limit the range of the aim Box ESP - wh in the form of boxes Box Style - box style, corners or full 2D boxes Health Bar - show the amount of HP using a bar Armor Bar - Show the amount of armor players have using a bar Skeleton - wh in the form of skeletons Distance - distance to targets Name ESP - players' nicknames Snaplines - wh in the form of lines Weapon - weapons in the hands of players Glow - outline of character models Spectators - show the number of players who are watching you after death Loot ESP (Items) Loot ESP - wh showing items (loot) Rarity Filter - filter items based on their rarity Glow - outline of items Ammo - show ammunition Heal - first aid kits, items for treatment Scopes - sights for weapons Weapons - various weapons Deathbox - boxes of dead players with loot inside Grenades - grenade, explosive Equipment - helmets, armor, backpacks Attachments - various modules for weapons Distance - distance to loot
    • Web: https://cheatcenter.net/ Albion Online Radar Hack We are excited to introduce a new product in our store: a private radar for Albion Online. Creating software with powerful features for this game is quite challenging, which is why radar software remains one of the most useful and safest options available. With this radar, you can easily detect resources, mobs, players, and other in-game objects. The software comes with numerous customizable settings, allowing you to tailor it to your preferences. In short, if you want to significantly boost your farming and leveling speed in Albion Online, this radar is an invaluable tool you shouldn’t overlook. Product Description Players Radar for Albion Online Enable On Mount Name Health Distance Players in Your Party (Team Check) Mobs Radar for Albion Online Hostile (Enemies) Boss Miniboss Mists Wisps (Common, Uncommon, Rare, Epic, Legendary) World (Items, Loot) Wood Rock Fiber Ore Hide Filter by Tier & Enchantment Hiden Cheast Avalone Drone Player Lootbag Mob Lootbag Dungeons Solo Group Corrupt Hellgate Mist Portal Distance Misc (Other Settings) Zoom Transparency Point Scale Text Scale Disable Radar Key Disable Player Key Custom Colors CFG System      
    • Web: https://cheatcenter.net AIMBOT Bone Select bind Prediction Draw FOV Fov Smooth Enable team check Limit dist VISUAL Skeleton Corner Box Health Bar Distance Nickname Enable team check Limit dist LOOT Armor plate Armor heavy Ammo Gasmask Weapon Money Kill streak Crates Stimulator Limit distance Colors Color visible Color Unvisible Color Visible team Color UnVisible team  
    • nice share, now if you add some details per file, i will unban your main account  😄
  • Topics

×
×
  • Create New...