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

    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchiha.sellpass.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt  
    • Hello everyone, I would like some help adapting this file for a custom community board l2jFrozen:   package com.l2jfrozen.gameserver.communitybbs; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Map; import java.util.StringTokenizer; import javolution.util.FastMap; import com.l2jfrozen.Config; import com.l2jfrozen.gameserver.cache.HtmCache; import com.l2jfrozen.gameserver.communitybbs.Manager.BaseBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.ClanBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.PostBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.RegionBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.TeleBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.TopicBBSManager; import com.l2jfrozen.gameserver.communitybbs.Manager.shopBBSManager; import com.l2jfrozen.gameserver.handler.IBBSHandler; import com.l2jfrozen.gameserver.model.L2Clan; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.model.multisell.L2Multisell; import com.l2jfrozen.gameserver.network.L2GameClient; import com.l2jfrozen.gameserver.network.SystemMessageId; import com.l2jfrozen.gameserver.network.serverpackets.ShowBoard; import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage; public class CommunityBoard { private static CommunityBoard _instance; private final Map<String, IBBSHandler> _handlers; protected final SimpleDateFormat fmt = new SimpleDateFormat("H:mm."); public CommunityBoard() { _handlers = new FastMap<>(); // null; } public boolean checkPlayerConditions(L2PcInstance activeChar, String command) { if (activeChar.isInOlympiadMode()) { activeChar.sendMessage("CommunityBoard use is prohibited at the Olympiad"); return false; } if (activeChar.isFlying() || activeChar.isMounted()) { activeChar.sendMessage("CommunityBoard use is prohibited at while flying or mounted!"); return false; } if (activeChar.inObserverMode()) { activeChar.sendMessage("CommunityBoard use is prohibited in ObserveMode!"); return false; } if (activeChar.isAlikeDead() || activeChar.isDead()) { activeChar.sendMessage("CommunityBoard use is prohibited While Dead"); return false; } if (activeChar.isInCombat()) { activeChar.sendMessage("CommunityBoard use is prohibited in Combat!"); return false; } if (activeChar.isCastingNow()) { activeChar.sendMessage("CommunityBoard use is prohibited while Casting!"); return false; } if (activeChar.isAttackingNow()) { activeChar.sendMessage("CommunityBoard use is prohibited while Attacking!"); return false; } if (activeChar.isInDuel()) { activeChar.sendMessage("CommunityBoard use is prohibited while Playing Duel!"); return false; } if (activeChar.isFishing()) { activeChar.sendMessage("CommunityBoard use is prohibited while Fishing!"); return false; } if (activeChar.isInStoreMode()) { activeChar.sendMessage("CommunityBoard use is prohibited in StoreMode!"); return false; } if (activeChar.isInJail() || activeChar.isCursedWeaponEquipped() || activeChar.isFlying() || activeChar.isInBoat() || activeChar.isProcessingTransaction() || activeChar.isStunned()) { activeChar.sendMessage("CommunityBoard use is prohibited right now!"); return false; } return true; } public static CommunityBoard getInstance() { if (_instance == null) { _instance = new CommunityBoard(); } return _instance; } /** * by Azagthtot * @param handler as IBBSHandler */ public void registerBBSHandler(final IBBSHandler handler) { for (final String s : handler.getBBSCommands()) { _handlers.put(s, handler); } } /** * by Azagthtot * @param client * @param command */ public void handleCommands(final L2GameClient client, final String command) { L2PcInstance activeChar = client.getActiveChar(); if (activeChar == null) return; if(!checkPlayerConditions(activeChar, command)) return; if (Config.COMMUNITY_TYPE.equals("full")) { String cmd = command.substring(4); String params = ""; final int iPos = cmd.indexOf(" "); if (iPos != -1) { params = cmd.substring(iPos + 1); cmd = cmd.substring(0, iPos); } final IBBSHandler bbsh = _handlers.get(cmd); if (bbsh != null) { bbsh.handleCommand(cmd, activeChar, params); } else { if (command.startsWith("_bbsclan")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsmemo")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsgetfav")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstopics")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsposts")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstop")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbshome")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbsloc")) { String text = HtmCache.getInstance().getHtm("data/html/CommunityBoard/index.htm"); //Custom Community Board text = text.replace("%CharName%", String.valueOf(activeChar.getName())); text = text.replace("%CharClass%", String.valueOf(activeChar.getClassId().name())); text = text.replace("%CharLevel%", String.valueOf(activeChar.getLevel())); if (activeChar.isNoble()) { text = text.replace("%nobless%", "Yes"); } else { text = text.replace("%nobless%", "No"); } L2Clan clan = activeChar.getClan(); if (clan != null) { text = text.replace("%CharClan%", String.valueOf(activeChar.getClan().getName())); } else { text = text.replace("%CharClan%", "No Clan"); } text = text.replace("%CharIP%", String.valueOf(activeChar.getClient().getConnection().getInetAddress().getHostAddress())); text = text.replace("%PlayerOnline%", String.valueOf(L2World.getInstance().getAllPlayers().size()* 1)); text = text.replace("%ServerTime%", fmt.format(new Date(System.currentTimeMillis()))); //Custom Community Board BaseBBSManager.separateAndSend(text, activeChar); } else if (command.startsWith("_bbstele")) { TeleBBSManager.getInstance().parsecmd(command, activeChar); } else if (command.startsWith("_bbsShop")) { shopBBSManager.getInstance().parsecmd(command, activeChar); } else if(command.startsWith("_bbsmultisell;")) { StringTokenizer st = new StringTokenizer(command, ";"); st.nextToken(); shopBBSManager.getInstance().parsecmd("_bbsShop;" + st.nextToken(), activeChar); L2Multisell.getInstance().SeparateAndSend(Integer.parseInt(st.nextToken()), activeChar, false, 0); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + command + " is not implemented yet</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } } } else if (Config.COMMUNITY_TYPE.equals("old")) { RegionBBSManager.getInstance().parsecmd(command, activeChar); } else { activeChar.sendPacket(new SystemMessage(SystemMessageId.CB_OFFLINE)); } activeChar = null; } /** * @param client * @param url * @param arg1 * @param arg2 * @param arg3 * @param arg4 * @param arg5 */ public void handleWriteCommands(final L2GameClient client, final String url, final String arg1, final String arg2, final String arg3, final String arg4, final String arg5) { L2PcInstance activeChar = client.getActiveChar(); if (activeChar == null) return; if (Config.COMMUNITY_TYPE.equals("full")) { if (url.equals("Topic")) { TopicBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Post")) { PostBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Region")) { RegionBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else if (url.equals("Notice")) { ClanBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + url + " is not implemented yet</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } } else if (Config.COMMUNITY_TYPE.equals("old")) { RegionBBSManager.getInstance().parsewrite(arg1, arg2, arg3, arg4, arg5, activeChar); } else { ShowBoard sb = new ShowBoard("<html><body><br><br><center>The Community board is currently disable</center><br><br></body></html>", "101"); activeChar.sendPacket(sb); sb = null; activeChar.sendPacket(new ShowBoard(null, "102")); activeChar.sendPacket(new ShowBoard(null, "103")); } activeChar = null; } }   And making it work in another l2jOrion project:   package l2jorion.game.community; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import l2jorion.Config; import l2jorion.game.community.manager.BaseBBSManager; import l2jorion.game.community.manager.ClanBBSManager; import l2jorion.game.community.manager.FavoriteBBSManager; import l2jorion.game.community.manager.FriendsBBSManager; import l2jorion.game.community.manager.MailBBSManager; import l2jorion.game.community.manager.PostBBSManager; import l2jorion.game.community.manager.RankBBSManager; import l2jorion.game.community.manager.RegionBBSManager; import l2jorion.game.community.manager.TopBBSManager; import l2jorion.game.community.manager.TopicBBSManager; import l2jorion.game.handler.ICommunityBoardHandler; import l2jorion.game.model.actor.instance.L2PcInstance; import l2jorion.game.network.L2GameClient; import l2jorion.game.network.SystemMessageId; import l2jorion.logger.Logger; import l2jorion.logger.LoggerFactory; public class CommunityBoardManager { protected static Logger LOG = LoggerFactory.getLogger(CommunityBoardManager.class); private Map<String, ICommunityBoardHandler> _handlers = new HashMap<>(); private final Map<Integer, String> _bypasses = new ConcurrentHashMap<>(); private static CommunityBoardManager _instance; public static CommunityBoardManager getInstance() { if (_instance == null) { _instance = new CommunityBoardManager(); } return _instance; } private CommunityBoardManager() { registerBBSHandler(new TopBBSManager()); registerBBSHandler(new FavoriteBBSManager()); registerBBSHandler(new RegionBBSManager()); registerBBSHandler(new ClanBBSManager()); registerBBSHandler(new TopicBBSManager()); registerBBSHandler(new MailBBSManager()); registerBBSHandler(new FriendsBBSManager()); registerBBSHandler(new TopicBBSManager()); registerBBSHandler(new PostBBSManager()); registerBBSHandler(new RankBBSManager()); LOG.info("CommunityBoardHandlers: Loaded " + _handlers.size() + " handlers"); } public void registerBBSHandler(ICommunityBoardHandler handler) { for (String bypass : handler.getBypassBbsCommands()) { if (_handlers.containsKey(bypass)) { continue; } _handlers.put(bypass, handler); } } public void onBypassCommand(L2GameClient client, String command) { final L2PcInstance player = client.getActiveChar(); if (player == null) { return; } if (Config.COMMUNITY_TYPE.equals("off")) { player.sendPacket(SystemMessageId.CB_OFFLINE); return; } /* * if (!AutoImageSenderManager.wereAllImagesSent(player)) { player.sendMessage("Community wasn't loaded yet, try again in few seconds."); player.sendPacket(new ExShowScreenMessage("Community wasn't loaded yet, try again in few seconds.", 2000, 2, false)); return; } */ String cmd = command.substring(4); String params = ""; final int iPos = cmd.indexOf(" "); if (iPos != -1) { params = cmd.substring(iPos + 1); cmd = cmd.substring(0, iPos); } ICommunityBoardHandler bypass = _handlers.get(cmd); if (bypass != null) { bypass.handleCommand(cmd, player, params); } else { if (command.startsWith("_bbshome")) { TopBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsgetfav") || command.startsWith("bbs_add_fav") || command.startsWith("_bbsdelfav_")) { FavoriteBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsloc")) { RegionBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsclan")) { ClanBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsmemo")) { TopicBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsmail") || command.equals("_maillist_0_1_0_")) { MailBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_friend") || command.startsWith("_block")) { FriendsBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbstopics")) { TopicBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsposts")) { PostBBSManager.getInstance().parseCmd(command, player); } else if (command.startsWith("_bbsshowrank")) { RankBBSManager.getInstance().parseCmd(command, player); } else { BaseBBSManager.separateAndSend("<html><body><br><br><center>The command: " + command + " isn't implemented.</center></body></html>", player); } } } public void handleWriteCommands(L2GameClient client, String url, String arg1, String arg2, String arg3, String arg4, String arg5) { final L2PcInstance player = client.getActiveChar(); if (player == null) { return; } if (Config.COMMUNITY_TYPE.equals("off")) { player.sendPacket(SystemMessageId.CB_OFFLINE); return; } if (url.equals("Topic")) { TopicBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Post")) { PostBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_bbsloc")) { RegionBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_bbsclan")) { ClanBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Mail")) { MailBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("Clan")) { ClanBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else if (url.equals("_friend")) { FriendsBBSManager.getInstance().parseWrite(arg1, arg2, arg3, arg4, arg5, player); } else { BaseBBSManager.separateAndSend("<html><body><br><br><center>The command: " + url + " isn't implemented.</center></body></html>", player); } } public ICommunityBoardHandler getCommunityHandler(String bypass) { if (_handlers.isEmpty()) { return null; } for (Map.Entry<String, ICommunityBoardHandler> entry : _handlers.entrySet()) { if (bypass.contains(entry.getKey())) { return entry.getValue(); } } return null; } public void addBypass(L2PcInstance player, String title, String bypass) { _bypasses.put(player.getObjectId(), title + "&" + bypass); } public String removeBypass(L2PcInstance player) { return _bypasses.remove(player.getObjectId()); } public Map<Integer, String> getAllBypass() { return _bypasses; } }  
  • Topics

×
×
  • Create New...