This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..
AdBlock Extension Detected!
Our website is made possible by displaying online advertisements to our members.
Please disable AdBlock browser extension first, to be able to use our community.
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:
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...:
/** * @param ANTIBOT_REMOVE_ITEMS_LIST * @return */ public L2ItemInstance[] getAllItemsByItemId2(List<Integer> ANTIBOT_REMOVE_ITEMS_LIST) { return getAllItemsByItemId2(ANTIBOT_REMOVE_ITEMS_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
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