hello Mxc i need some help from who understands java since i'm a bit noob as you can see and i'll go crazy, i made a antibot captcha by levels of punishment and i have tried using these pieces of code to put a config to look for items in the player's inventory and if you have to delete them, but i get 5000 errors in the server console after the system try to delete the items.
this is the config.java:
ANTIBOT_3_LEVEL_LISTITEMS_REMOVE = L2JModSettings.getBoolean("AntiBotLevel3ListItemsRemove", true);
String[] AntibotRemoveItems = L2JModSettings.getString("AntibotRemoveItems", "").split(",");
ANTIBOT_REMOVE_ITEMS_LIST = new ArrayList<>(AntibotRemoveItems.length);
for (String id : AntibotRemoveItems)
{
ANTIBOT_REMOVE_ITEMS_LIST.add(Integer.parseInt(id));
}
this is my antibot file ( piece of code):
if (Config.ANTIBOT_3_LEVEL_LISTITEMS_REMOVE)
{
for (L2ItemInstance item : player.getInventory().getAllItemsByItemId2(Config.ANTIBOT_REMOVE_ITEMS_LIST))
{
if (item != null)
{
player.getInventory().destroyItem("Anti Bot", item, player, player);
}
}
}
break;
and this is the method that i created in pcinventory.java to check the list...:
# Remove the list of items listed below on third level punishment?
AntiBotLevel3ListItemsRemove = True
# Remove the list of items listed below on third level punishment
# Example 6673,3470 (festival adena, gold bars)
AntibotRemoveItems = 6673,3470
i am getting the errors in the method getAllItemsByItemId2() , if someone can give me a hand 's take will be thankful ,thanks in advance.
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.
ADENA
500 K = 40e
1kk = 70e
3kk = 190e
ITEMS
staff of life = 150e
karmian set = 90e
elven jewls top D = 30e
Orcish Poleaxe+1 best C pole = 680e
any D grade armor on demand
discord
wiz0642_81242
❖Items that are sent by physical delivery are sent using someone else's data. That is, if you are not able to accept the parcel, we will not be able to return it. Please keep this in mind.
READY IN STOCK
PAYMENT SYSTEMS
4x4 io, Weststein, Paysafecard, Paysend, Genome, Conotoxia, Mybrocard, Payz Silver, Pockit UK, NagaPay, Volet com, SpectroCoin, SwissMoney, Yuh, Lydia / Sumeria, Ka.App, Wittix, Western Union, MyGuava, Xapo Bank, Bunq on emulator (DE, NL, FR, ES, IE ibans), Revolut on emulator (UK/EU), ICard, BlackCatCard, Vivid DE, Bankera, Bitsa, Wise EU/UK, N26 DE/ES on emulator, Skrill, Neteller, Trasta, Wirex, Lama, Paysera, Moneyjar
CRYPTOEXCHANGE
BINGX com, Bybit LVL 2, KuCoin, Binance LVL 2, Mexc, Latoken, Poloniex, Bitmart, Kraken, WhiteBit, Quppy, Nexo, Gate, OKX, Paybis, Paxful, Huobi (HTX), xcoins com, Bit2Me
BUSINESS ACCOUNTS
Stripe, Payoneer EU, Wise Business UK/EU, Revolut Business EU/UK, N26 Business DE, Wallester Business EU, Kraken Business Pro, Monzo Business, Vivid Business, Zen Business EU, Millennium Business PL, AirWallex EU/UK, Finom business, PayPal business, Payset business
NATIONAL BANKS / BANKS
BBVA, CommerzBank, ING, Santander, Kaspi Bank, Sberbank, AlfaBank, Tbank, Raiffeisen, mBank, Paribas, Bereke Bank, Kapital Bank
Question
b0rto
hello Mxc i need some help from who understands java since i'm a bit noob as you can see and i'll go crazy, i made a antibot captcha by levels of punishment and i have tried using these pieces of code to put a config to look for items in the player's inventory and if you have to delete them, but i get 5000 errors in the server console after the system try to delete the items.
this is the config.java:
this is my antibot file ( piece of code):
and this is the method that i created in pcinventory.java to check the list...:
and this is the config.ini:
i am getting the errors in the method getAllItemsByItemId2() , if someone can give me a hand 's take will be thankful ,thanks in advance.
Edited by b0rto2 answers to this question
Recommended Posts
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.