Skip to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Token

Script Officer
  • Joined

  • Last visited

Everything posted by Token

  1. @jason257 I've edited your post to comply with our forum rules, discussing other communities is not allowed. Have you tried enabling the randomize bot/break times option?
  2. You have to do it if you want to recover the account, if the account is locked before validating email, it's quite hard to unlock. Idk about bans but it should either make no difference or lower the ban rates.
  3. Token replied to Token's topic in Construction
    I'm afraid I'm not currently handling trials on any scripts
  4. Token replied to Token's topic in Minigames
    Did it continue fine afterwards?
  5. Try the graphic objects introduced in the dev build .60, the effect is a graphic object on the target
  6. Token replied to Token's topic in Minigames
    Have you ran other scripts previously in the same client? Are you using multiple bot tabs? Does it work if restarting the client? Could you send me an image of your GUI settings?
  7. Uninstall all versions of java (both jdk and jre) and then install the correct one (java 8 )
  8. Token replied to Czar's topic in Spam/Off Topic
    Account sharing is against the rules
  9. Token replied to xlNick's topic in General Help
    It may require a newer version of windows for mirror mode, try on windows 10
  10. Token replied to xlNick's topic in General Help
    @xlNick are you using a mac?
  11. Token replied to Token's topic in Construction
    It doesn't use phials, I'm afraid I'm not currently handling trials on any scripts
  12. Token replied to Token's topic in Minigames
    Add some runtime limits to simulate sleep patterns, break every dream, change settings to lower interactions per time unit, try mirror mode, all of them should probably make it invincible lol
  13. Token replied to Token's topic in Minigames
    New record
  14. So what you describe is constructing a path by chaining paths between obstacles, this can easily be achieved with the LocalPathWalker. There are many implementations available for findPath, some of them are like this LocalPathFinder lpf = new LocalPathFinder(getBot()); lpf.findPath(entity); // path from player's position to an entity lpf.findPath(startPosition, endPosition); // path between 2 positions lpf.findPath(endPosition); // path from player's position to a position lpf.findPath(startPosition, entity); // path from a position to an entity You you will probably need the last one. Start with player position and build a path to the destination position, if none is found, iterate through all entities that can be reached and determine whether the position past that entity (use rotation/orientation do determine the position after the entity) can get you closer to the destination. If it still doesn't reach the destination, iterate through all entites that can be reached from the position after the first entity and do the steps above for n iterations. Then simply add up all the paths to create the main path (include the entities that have to be interacted with on the way). There is no need for flags for the above as there are many high level methods already provided in the API that wrap everything needed, but the main problem you will encounter here is that the game only loads in 104x104 blocks, meaning that you can't dynamically access information about entities or flags outside the loaded region without having all this preprocessed and cached. You can do this around fred's house to open gates/doors, but varrock is not loaded and you can't find doors around the castle for example. I strongly suggest you take a look at webwalking, it may save you a lot of time by just calling getWalking().webWalk(destination); Which will automatically walk anywhere on the map, handle all obstacles (not just doors and gates). This can also walk between planes, use teleports, enchanted jewelry, spirit trees, gnome gliders, ships and pretty much everything available in runescape. OSBot's webwalker has been continuously developed for the last 4 years and provided support for advanced scripts like questing, slayer, automated farms and many more. It already has information about obstacle requirements everywhere on the map, including things like passing through the Al Kharid gate depending on whether the user has coins in inventory or the quest completed to pass for free, and would take the longer path otherwise. PS: See WebWalkEvent in the API docs for advanced usage and configuring options like teleports
  15. Entities do not have flags (including players), only positions have flags. You may be familiar with an API where it was presented wrong, but every position has corresponding flags that describe access to that certain position, eg. it cannot be walked from south, south east, north, it is completely blocked, blocked only from south etc. These are all coded in the bits of that number (the position/tile flag). Mentioning what you are trying to do with this would probably be better as you may not need these at all.
  16. I’ve edited your post to conform with the forum rules (discussing other communities is not allowed). Those are the flags for a position, if something is on the position, they will have values to indicate that. What exactly are you looking for?
  17. getMap().getRegion().getClippingPlanes()[POSITION.getZ()].getTileFlags()[POSITION.getLocalX(getBot())][POSITION.getLocalY(getBot())] PS: Flags can only be accessed for the loaded region which is 104x104, throws indexoutofboundsexception otherwise as the localx/localy will not be from 0 to 103. Check that the positions localx and localy are within bounds.
  18. Token replied to DylanSRT's topic in Hunter
    @DylanSRT may want to reply once in a while
  19. Use mirror mode and attach to the official game client
  20. I believe it should be fixed lmk if you are still having issues
  21. Token replied to Token's topic in Minigames
    Sorry for the delay, I've reverted some recent updates, is it working now?
  22. Token replied to Token's topic in Minigames
    No, idk what's the issue lol. The code is totally different for Stealth NMZ and FruityNMZ.
  23. Token replied to Token's topic in Minigames
    Not really, that's the dev version, not stable yet
  24. Token replied to Token's topic in Minigames
    The new version is up now, is it still happening? What's printed in the logger if it still does happen?
  25. Token replied to Token's topic in Minigames
    I haven't had any issues with the break manager

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.