Jump to content

Maxi

Developer
  • Posts

    1430
  • Joined

  • Last visited

  • Days Won

    82
  • Feedback

    0%

Posts posted by Maxi

  1. This issue is caused by Java that doesn't recognise the SSL certificate, this will happen for some users. For this we had to rewrite the way the bot handles secure SSL connections. I've written a patch for it and I would like a user who is currently experiencing this issue to test a test version of the client I'll provide. Please send me a PM to get the testing going.

  2. Ya but I meant walking to a fishing spot. That didn't work biggrin.png bcs its located int he water probably smile.png

    And this is probably seen as unwalkable (different flags?)

    Same goes for fishing spots, they have special bits set in the flag bit set. I just wrote a fisher script and I can walk fine to fishing spots.

     

       public boolean walkToPool() {
            NPC pool = getClosestFishingSpot();
            if (pool != null) {
                return localWalker.walk(pool);
            } else {
                if (localWalker.walk(poolArea, true)) {
                    return true;
                } else if (path != null) {
                    Position[] p = ArrayUtils.clone(path.get(random(path.size())));
                    ArrayUtils.reverse(p);
                    return localWalker.walkPath(p);
                }
            }
            return true;
        }
    
    • Like 1
  3. Well this was never an issue, I've used this for 7 months ...

    If you click the minimap on a unreachable spot( like tree or fish spot) it auto walks as close as possible.

     

    But ok i'll write another method to get a Tile thats walkable next to it ... xD

     

    Thx for the info and your time!

     

    Khaleesi

    I was talking about the walker. The walker generates a path towards an object, and is configured to walk to trees etc at the closest spot besides it. But you can't walk to an object that is behind a wall because no path can be generated towards it. 

    • Like 1
  4. Obviously you can't walk somewhere if you try to walk to a position or entity that is not reachable. That is not a bug but common sense. Like you can't walk to bankers (although I've added something in that it will actually walk to bankers by grabbing the booth).

  5.  

    Getting this for some reason just bought the script, Brought 27 sharks with me 1 free invent slot as I didn't bring a tab could this be a reason??
     
    [ERROR][bot #1][02/21 07:52:31 PM]: Error in bot executor!
    java.lang.NoSuchMethodError: org.osbot.rs07.api.map.Position.distance(Lorg/osbot/rs07/api/map/Position;)I
    at Main.mainclass.F(g:925)
    at Main.mainclass.onLoop(g:1167)
    at org.osbot.rs07.event.ScriptExecutor$InternalExecutor.run(pn:209)
    at java.lang.Thread.run(Unknown Source)
    [iNFO][bot #1][02/21 07:52:45 PM]: New screenshot saved to: C:/Users/user/OSBot/Data/screenshots/screenshot_1.png
    [DEBUG][bot #1][02/21 07:52:46 PM]: Applet resize : (775, 513)
    [iNFO][bot #1][02/21 07:53:20 PM]: Terminating script APA Rock Crabs...

    Just banked got cammy tabs working so far thanks man

    It's ended itself again..

     

    You are not using the latest version of OSBot.

    • Like 2
  6. This would be hard to implement with the forum's chat because as far as I'm aware the IP.Chat protocol isn't public. A chat module however is possible, but there are more important things that we work on. A simple irc implementation shouldn't take too much time, we'll keep this in mind. If anyone wants to write this and provide it then we can consider to implement it in the client.

×
×
  • Create New...