- 0
Help Me Please !
-
Posts
-
By sellerking · Posted
TG Support: https://t.me/buyingproxysup | Channel: https://t.me/buyingproxycom Discord support: #buyingproxy | Server: Join the BuyingProxy Discord Server! Create your free account here -
I've purchased the Samurai interface. Everything went smoothly, and the interface is excellent. Highly recommended!
-
For quick reference, I’ve been using the D12 dice roller when testing dice mechanics—clean design and instant results help a lot. It might give you a solid visual template to work from as you build your own games.
-
🪙 GoldRush — High Five x20 🪙 A fresh High Five server focused on active progression, fair competition, and a healthy player-driven economy. GoldRush is built for players who want a fresh spin on our beloved game that is connected to today's world via Web3 marketplace. 🏅 Gold Bar & Marketplace • Gold Bars are part of the server's custom economy — they can be used in Marketplace or Cosmetics shop. • Tokens are optional and used only for server Marketplace features. ⚙️ Server Rates • EXP: 20x • SP: 20x • Adena: 10x • Normal Drop Chance: 8x • Spoil Chance: 12x • Raid Drop Chance: 3x • Quest Item Drop Amount: 5x • Quest EXP/SP Reward: 10x • Quest Adena Reward: 5x ✨ Enchant Rates • Max Enchant: Weapons +16 / Armors +12 • +0 to +3 armor / weapon = 100% safe • +0 to +4 full body armor = 100% safe • +4 to +6 = 66% • +7 to +9 = 60% • +10 to +12 = 54% • +13 to +14 = 48% • +15 to +16 = 42% 🛒 Alt+B Services GoldRush includes useful Alt+B services: • GM Shop up to Dynasty • Buffer 1h • Teleports • Drop Search • Rankings 🎒 Auto-Loot • Normal mob drops: auto-loot • Adena: auto-loot • Raid drops: stay on the ground • Herbs: stay on the ground 🧙 Class Progression • 1st and 2nd professions are free with shadow weapon reward. • 3rd profession: 5kk • Auto Learn Skills • Subclass - No Quest • Noblesse - Full Quest ⚔️ Olympiad • Hero period: 1 week • Olympiad time: 18:00–00:00 server time • Match duration: 5 minutes • Max enchant in Olympiad: +6 🏰 Sieges Castle sieges take place on Sundays at 16:00 and 20:00 GMT+3. The first siege will happen 2 weeks after launch. 🐉 Grand Boss Respawn Queen Ant: 24h + 2h random Core: 30h + 2h random Orfen: 48h + 2h random Baium: 120h + 3h random Antharas: 120h + 24h random Valakas: 120h + 24h random Beleth: 120h + 24h random ⚔️ Fair Play Bots are strictly forbidden and will result in a ban without warning. Dualbox is limited to 1 box. GoldRush is built around a healthy player-to-player economy. Website : https://www.goldrushpvp.xyz/ Discord : https://discord.com/invite/v3zRZVV6ka Guide of how to make an account on our web3 server!
-
Patch notes of update v1.0 is done regarding some feedbacks. Added Special Buffs category to the buffer. Queen Cat, Seraphim and Dwarf equipment buffs are now available. Special buffs last 1 hour and can be saved in schemes. Players can now Shift+Click monsters to check drops and spoil directly in-game.
-
-
Topics

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