Jump to content

How to disable quest and inventory seaching in webwalk


Algo88

Recommended Posts

Hi,

Everytime when webwalk is executed, it's searching for quests / inventory too fast and it's raising concern about my bot detection. One of my bots had been immediately banned the moment it started webwalk. May be coincidence but just to be safe, any way to disable it quest/inventory search ?

I have tried setting all to false but it's still searching quest:

		WebWalkEvent event = new WebWalkEvent(Area);
		PathPreferenceProfile ppp = new PathPreferenceProfile();
		
		
		
		ppp.checkBankForItems(false);
		ppp.checkEquipmentForItems(false);
		ppp.checkInventoryForItems(false);
		
		ppp.setAllowCharters(false);
		ppp.setAllowFairyRings(false);
		ppp.setAllowGliders(false);
		ppp.setAllowSpiritTrees(false);
		ppp.setAllowObstacles(false);
		ppp.setAllowTeleports(false);
		
		event.setPathPreferenceProfile(ppp);
        execute(event);

 

Link to comment
Share on other sites

Even though you were banned while web-walking that doesn't necessarily mean that web-walking is what got you flagged. The data collected from your account must've just looked very bot-ish.

As for the quests tab, I doubt they're tracking the instances of who opens their quest tab before walking or else that might cause a lot of false-flags.

To solve your problem, you could always use a different walk class, but the downfall is they can't take you as far of a distance as web walking.

Check out: https://osbot.org/api/org/osbot/rs07/api/Walking.html

  • Like 1
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...