fieldtester Posted March 11, 2021 Share Posted March 11, 2021 Hey, currently the webwalker seems to be using paths that require quests that bot does not have, for example trying to open locked gate in mcgrubbors. I know that I could disable quest links in the path preference profile or handle it myself manually, but I was wondering if it's possible to extend web walker so it ignores specific quests or fairy rings? Thank you Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted March 11, 2021 Share Posted March 11, 2021 46 minutes ago, fieldtester said: Hey, currently the webwalker seems to be using paths that require quests that bot does not have, for example trying to open locked gate in mcgrubbors. I know that I could disable quest links in the path preference profile or handle it myself manually, but I was wondering if it's possible to extend web walker so it ignores specific quests or fairy rings? Thank you It should not do that, it will check for all of that before generating a path. I've seen this happen very rarely for some people. Probably restarting the cleint would fix it With the PathPreferenceProfile you can enable and disable certain ways. but it shuld always take your accounts stats/progress in mind Quote Link to comment Share on other sites More sharing options...
fieldtester Posted March 11, 2021 Author Share Posted March 11, 2021 21 minutes ago, Khaleesi said: It should not do that, it will check for all of that before generating a path. I've seen this happen very rarely for some people. Probably restarting the cleint would fix it With the PathPreferenceProfile you can enable and disable certain ways. but it shuld always take your accounts stats/progress in mind Interesting, could it be that I am setting the PathPreferenceProfile wrong? PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowTeleports(true); ppp.setAllowFairyRings(true); ppp.setAllowCharters(true); ppp.setAllowQuestLinks(true); ppp.checkBankForItems(true); webWalkingEvent = new WebWalkEvent(area); webWalkingEvent.setPathPreferenceProfile(ppp); webWalkingEvent.setHighBreakPriority(true); execute(webWalkingEvent); Also, what do you mean by saying PathPrefProfile can be enabled/disabled in certain ways? Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted March 11, 2021 Share Posted March 11, 2021 13 minutes ago, fieldtester said: Interesting, could it be that I am setting the PathPreferenceProfile wrong? PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowTeleports(true); ppp.setAllowFairyRings(true); ppp.setAllowCharters(true); ppp.setAllowQuestLinks(true); ppp.checkBankForItems(true); webWalkingEvent = new WebWalkEvent(area); webWalkingEvent.setPathPreferenceProfile(ppp); webWalkingEvent.setHighBreakPriority(true); execute(webWalkingEvent); Also, what do you mean by saying PathPrefProfile can be enabled/disabled in certain ways? Well if you disable some links it won't use it. The profile should still keep tack of skills/quests and all that, probably fixed if you resstart the client Quote Link to comment Share on other sites More sharing options...
fieldtester Posted March 11, 2021 Author Share Posted March 11, 2021 1 hour ago, Khaleesi said: Well if you disable some links it won't use it. The profile should still keep tack of skills/quests and all that, probably fixed if you resstart the client I have restarted the client multiple times, this is an issue I been having for quite some time, that's why I assumed webwalker doesn't keep track of stats/quests. By saying disable some links, do you mean disabling links like fairy rings or charters? Or disabling certain quest links? If so, how could I do that? Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted March 11, 2021 Share Posted March 11, 2021 2 hours ago, fieldtester said: I have restarted the client multiple times, this is an issue I been having for quite some time, that's why I assumed webwalker doesn't keep track of stats/quests. By saying disable some links, do you mean disabling links like fairy rings or charters? Or disabling certain quest links? If so, how could I do that? Only the options you have in the profile can be toggled. What exactly is it trying to use that you can't use? Quote Link to comment Share on other sites More sharing options...
fieldtester Posted March 11, 2021 Author Share Posted March 11, 2021 1 hour ago, Khaleesi said: Only the options you have in the profile can be toggled. What exactly is it trying to use that you can't use? Example one: Going to ardougne - The bot uses fairy ring and gets to mcgrubbor place and then tries to get through the gate. - Gets stuck Example two: Going to shantay pass - The bot uses necklace of passage, goes to Eagle's Eyrie and then tries to use the rug to get to shantay pass, however I don't have the quest for that, so the rug can't be used - Gets stuck. Quote Link to comment Share on other sites More sharing options...
fieldtester Posted March 14, 2021 Author Share Posted March 14, 2021 Update on the issue: It seems that web walker assumes the bot has the quest, because I tried to go to the shantay pass with just the necklace and it walked fine, however if I have coins in my inventory then it tries to use the rug. I have managed to handle with `ignoreItems` method. Quote Link to comment Share on other sites More sharing options...