I was waiting for you to wrap all this stuff around xD The true is that he selling Lucera 2 IL on Classic client claiming this the best stuff but reality maybe pvp srv can this shit adopt and the maps was taken from devmem or how it calllz forgot this guy who makingmaps, use this all work without even geodata selling this crap and claim its the best pack, he sould ban from ucera cominity for crappy image but up to them ) Anyway this shit was selin for money and u can download for free )
the translation on google is something about discovering a mammoths dick or something
but generally he says that "dick" a lot maybe he likes them
but whats the story behind and what is the truth ..we will never know
Question
ceanki
who can tell me why not consume book`s ? i put this code for make stackable book and not work ... :(
### Eclipse Workspace Patch 1.0#P L2jFrozen_GameServerIndex: 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("BOGStackable", "False"));+ BOG_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "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 gemstonesIndex: 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); } } else1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now