Jump to content

fieldtester

Members
  • Posts

    9
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by fieldtester

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

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

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

  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!

×
×
  • Create New...