0flee Posted August 31, 2021 Posted August 31, 2021 Hello, i want to make smart thing in alt+b. I want to make a shop where player can buy runes. For drop & Spoil. I maked buttons and looks like this, All good till hee. But when i press " purchase " I get this: On bbs, i make code like this: // Drop Amount 100% 2 hours if (command.startsWith("_bbstopDropBonusAmountx2for2Hours")) { if (ownsAtLeastOneItem(activeChar, 17400, 17401)) { activeChar.sendMessage("You already have drop rune! Please wait...!"); } else if (!ownsAtLeastOneItem(activeChar, 17400, 17401)) { if (activeChar.getInventory().getInventoryItemCount(14351, 0, false) < 600) { activeChar.sendMessage("You don't have 600 Gracian Anniversary Coins!"); } else { activeChar.getInventory().addItem("Rune_Drop_Amount_2_hours", 17401, 1, activeChar, activeChar.getTarget()); activeChar.destroyItemByItemId("cost", 14351, 600, activeChar, true); activeChar.sendMessage("====== Bonus Drop Amount ======"); activeChar.sendMessage("====== 100% - ( 2 hours ) ======"); activeChar.sendMessage("====== Enjoy ======"); } } } This is for 1 button. I make this on TopBBSManager.java. What i do wrong? Where i have to implement the "_bbstopDropBonusAmountx2for2Hours"? Project L2j-Sunrise HIgh Five. Thank you !
0 Pleyne Posted August 31, 2021 Posted August 31, 2021 I strongly recommend you creating new handler for such custom commands or using a sub arguments, because it's a mess to have such a long bypass. adding sub-commands you won't have c/p code (you have a clean one) and with arguments you will be able to variate what reward you want to give. this is how to debug and detect what command you get. if you don't know how to debug add message. basically you get that error because no community bypass managers detects that command. p.s. i never ever have used this 'amazing cbByPass' pack so i might be wrong, but anyway, these are my 2 mins of looking into it
0 0flee Posted August 31, 2021 Author Posted August 31, 2021 Lol i get this I don;t know how to fix...:(
0 Pleyne Posted August 31, 2021 Posted August 31, 2021 does not match with have you tried this? if(command.startsWith("_bbstopDropBonusAmountx2for1Hour")) also the placement is important: p.s. i'm using shared on internet 'l2jsunrise' pack, i don't know if it's exact same structure as you have
0 0flee Posted August 31, 2021 Author Posted August 31, 2021 I have paid version. Latest I put just 1 method. If i fix that, i will fix others. Ok, it works, but i still get When i press on button, i get item on inventory, but i still get that. Ok, fixed. I miss separateandsend line. Can close topic
0 Vision Posted September 1, 2021 Posted September 1, 2021 Ok, locked. At least you found the problem.
Question
0flee
Hello, i want to make smart thing in alt+b. I want to make a shop where player can buy runes. For drop & Spoil. I maked buttons and looks like this,
All good till hee. But when i press " purchase " I get this:
On bbs, i make code like this:
This is for 1 button. I make this on TopBBSManager.java. What i do wrong? Where i have to implement the "_bbstopDropBonusAmountx2for2Hours"?
Project L2j-Sunrise HIgh Five.
Thank you !
5 answers to this question
Recommended Posts