Jump to content

fieldtester

Members
  • Posts

    9
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

fieldtester's Achievements

Newbie

Newbie (1/10)

0

Reputation

  1. 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.
  2. 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.
  3. 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?
  4. 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?
  5. 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
  6. Hello, at the moment I am trying to web walk to Crandor (2828, 3234, 0) and I am getting a message `WebWalkingEvent; No route found! Destinations = [[x=2828, y=3234, z=0]];`. Is there anything I can do to get to that position? This is my code for the webwalkevent: PathPreferenceProfile ppp = new PathPreferenceProfile(); ppp.setAllowTeleports(true); ppp.setAllowFairyRings(true); ppp.setAllowCharters(true); walkingEvent = new WebWalkEvent(location); walkingEvent.setEnergyThreshold(random(30, 50)); walkingEvent.setPathPreferenceProfile(ppp); Thanks!
  7. Great stuff. Thanks!
×
×
  • Create New...