Jump to content
  • 0

Little Help With Captcha Code


Question

Posted (edited)

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:

# 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.

Edited by b0rto

2 answers to this question

Recommended Posts

  • 0
Posted (edited)

Your method is calling itself, leading to a permanent loop (server processes it until it ends into a stackoverflow).

 

What you want to do is to loop over all items (generic existing method), retrieve their ids and compare id with whatever id from the list (I added ArrayUtil.contains for such case on aCis, dunno if you got a similar thing on whatever project you use). If it's positive, you delete the item.

 

Take inspiration from "castle circlet removal" custom.

Edited by Tryskell

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Οχι για ενα merge script για 2 λογους   1. οτι καποιος ζηταει κατι, του λες τιμη, σου δινει λιγοτερα και μετα σου λεει θα παρεις τα αλλα στην επομενη πληρωμη κ εξαφανιζεται   2. οτι εσυ του εξηγεις πως δουλευει κατι, του λες τιμη, συμφωνει, σου λεει μπες κανε μου αυτο τζαμπα λιγο για να προχωρησουμε στο merge, του λες οχι πληρωσε με πρωτα για αυτο κ μετα. σου λεει καντο και σε πληρωνω, του το κανεις, σε γραφει για 10 μερες στο chat και ξαφνικα βλεπεις [WTB] δικο του στο maxc κ οταν τον ρωτας λεει "ναι δικο μου ειναι κ εχω αρχισει ηδη και με αλλον dev".    Αρα καταλαβαινεις τι παιζει εδω, επισης τα λεφτα δεν μ τα εδωσε ακομη κ δεν τα θελω απλα τονιζω τον ορκισμο του "scam" κ οχι αυτα τα τοπικ που εκανα εγω ban trades με 15 ατομα απο τα 1,500 που εχω δουλεψει απο το 2014.
    • Όλα αυτά για ένα merge script ρε παιδιά ? 😅  
    • Έχει ψωμάκι εδώ      
    • afto pou akoma 12.5 xronia meta exeis akoma apopsi gia pragmata pou den gnwrizeis den allazei ?
    • 5 χρονια σε περιμενω για καφε 😞 επισης αμα ειναι να γνωρισω κοντο κοστουμαρισμενο με ζελε στο μαλλι δεν θελω.
  • Topics

×
×
  • Create New...

Important Information

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