Jump to content

FrostBug

Scripter III
  • Posts

    3967
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    100%

Everything posted by FrostBug

  1. You're walking regardless of whether or not you have a Pot, but only write to logger if you don't have a pot.. I have a hard time understanding the logic behind this; but okay. The conditional sleep waits from the moment you've finished walking, up to 4 minutes.. Why? Nothing is gonna change once it's finished walking. This is not an async event.
  2. FrostBug

    FrostCaves

    You running mirror mode? Make sure to choose injection; try restarting client for the null thing; last time I heard of that happening, it was fixable with a client restart, or by opening equipment tab before starting.. something with the client failing to read equipment for some reason EDIT: also if you could PM me the log files (found in OSBot data directory) for those runs, that would be great (assuming it wasn't caused by running mirror mode)
  3. I personally use injection (which is what I assume you meant)
  4. Hi, Since you're a VIP user, there is no account limit.
  5. Same problem was resolved here (Interact with mousedestination)
  6. It won't do that if the area is on the screen with AreaDestination; this ignores widgets and whatnot Maybe try MouseDestination dest = new RectangleDestination(getBot(), InventoryMouseDestination.getSlot(slot));
  7. Well, I don't think you can do it with the built in API since it will close any open widget except for the bank one (which I believe is a hardcoded exception). Why do you want to do this anyway? It's a little ugly, but you could use this as a possible workaround: int slot = getInventory().getSlot(filter); MouseDestination dest = new AreaDestination(getBot(), getInventory().getMouseDestination(slot).getArea()); getMouse().click(dest); The extra MouseDestination wrap is because I believe the widget check is actually located in the InventoryMouseDestination class; at least it used to be, might've been changed since. EDIT: If it has been changed, you can remove the AreaDestination wrap.
  8. FrostBug

    FrostCaves

    Well, if you could provide screenshot/gifs of these scenarios getting stuck, that would help. I never make script changes based on speculation; not with this one. I still do test runs occasionally, but haven't had any issues the last few times. I'll do some more soon to make sure. For minimap interactions and such, that can often be caused by settings such as screen zoom or resizable mode; so ensure that those are at default and fixed (probably is; but make sure anyway). Most of the script changes at this point are very technical; most often minor changes to the evaluation heuristics (the numbers used to make decisions); I don't think it'll make much sense to specify these in the OP. I'll have a look. Was this using 'Quick-start', or did you manually specify numbers of potions? If so, how many of each did you specify? Also is there a difference between these images? What am I looking at here
  9. No - most scripters use a web server as a mediator between script and database
  10. That is not the full error, but we'll work with it you can use the Tabs api to switch tabs
  11. In the future, including the error may be helpful. Probably the widget 'chatbox' is null in this case, though. In other words a widget with those IDs was not loaded or visible at the time.
  12. I'll try to remember adding the trial tomorrow Gud-guy @evenflyox answered the rest
  13. FrostBug

    FrostCaves

    Well it won't do that with 90s or 360s as they are just as likely to attack with range/mage even in melee distance
  14. FrostBug

    FrostCaves

    Like Bronze said, it should include melee in the prayer flicking if jad is in a position to melee attack. @Bronze do you mean that if jad can't settle under the player, it wont pray melee? That sounds odd, but I'll def have a look into it
  15. The login handler seems to pause the ScriptExecutor. This would conflict with the fact that it's also a ResponseCode listener, as the ResponseCode listeners (I believe) are invoked between calls to onLoop (which will not happen when ScriptExecutor is paused). Perhaps it's outdated.
  16. FrostBug

    FrostCaves

    Right there on my profile. live:frostbug_1
  17. Just making an InteractionEvent around a MouseDestination rather than an Entity will probably get your desired result, since it can't verify reachability.
  18. FrostBug

    FrostCaves

    Afraid not I can take a look over skype later today if you want. Tho from previous description it sounds like high ping or connectivity issues is the cause.
  19. FrostBug

    FrostCaves

    Try to select a world with ~100ms or lower ping, or disable prayer flicking
×
×
  • Create New...