Jump to content
  • 0

Help community new implements !


Question

Posted

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, image.png.347e8f62abb727c52167449595ebbf86.png

 

All good till hee. But when i press " purchase " I get this:

 image.png.7e9f1c33af775d1c3a3e0191efe232f7.png

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 !

5 answers to this question

Recommended Posts

  • 0
Posted

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
image.png

  • 0
Posted

image.png.3ac41e624aa27d6d374ad332d2cffe45.png


does not match with

image.png.9633ed5081bbf442480b71c4a552231f.png

have you tried this?

if(command.startsWith("_bbstopDropBonusAmountx2for1Hour"))


also the placement is important:
image.thumb.png.1770c36477d38599e2a243a2c04f3123.png

 

p.s. i'm using shared on internet 'l2jsunrise' pack, i don't know if it's exact same structure as you have

  • 0
Posted

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 
image.png.d915bd7e33370994f4611451f69703f4.png
When i press on button, i get item on inventory, but i still get that.

Ok, fixed. I miss separateandsend line. Can close topic

Guest
This topic is now closed to further replies.


×
×
  • Create New...