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

Divine

Members
  • Joined

  • Last visited

Everything posted by Divine

  1. Shouldn't take you more than 90 hours.
  2. Fixed some bugs with Idling.
  3. Divine posted a topic in Spam/Off Topic
  4. It works for me....
  5. Im working on all these. This is a complicated script, so expect a lot of bugs. For me, it runs 7 hours+, and for others too. Eating is the only real issue for pures. I'm working on this, eating is only 12 hours old :-).
  6. Yes, but the password is on the thread.
  7. Actually, if they download it, run it, rearchive it, it doesn't enable the password for them. Also I can change the password for all, already downloaded client whenever I wish. I believe this is my own code though, and I will handle it as I wish. But thank you for the suggestions + points.
  8. Can download it now :-P
  9. Planned to be added tomorrow as an additional spot! It does not.
  10. Divine replied to Doout's topic in Archive
    Will use!
  11. Just added tele-tab support :-)
  12. Divine replied to zachtucker's topic in Archive
    Will test! Good luck.
  13. And law runes. In the future I could add more.... but i don't see a need for the other drops.
  14. Taverly dungeon.
  15. Nope I already fixed it :-) Just banked my unids perfectly.
  16. Moved: http://osbot.org/forum/topic/3649-divines-master-script/
  17. Ashes are 217 each.... so if you lit 1000 logs you'd make 217000 gold. I will definitely add this feature in with a checkbox, so people can turn it on and off. Thank you guys!
  18. Well it's only been in development for about 6 hours, so I'll see if I can change the way it works to make it better and not appear as bot-like. It works best in places like catherby/seers where you have a looong path to use. Also canifis is nice, as well as Yanille.
  19. Ah, so have a reverse option. I'll add that in the next update! And the screenshots are to show ALL the bank locations that are supported :-)!
  20. I used all but getXPForLevel in my Firemaking code. The distance for finding the closest bank, and the LevelforXP for XP till next level. If it's useless to YOU, don't use it :-).
  21. It runs until it finds a spot where it can firemake, then starts another line. Then it goes to bank, and starts again.
  22. That is, the oddest combination of person. That's odd without the transgender, then put em together it's really odd! Interesting video though.
  23. Here are some awesome, useful snippets: DistanceToPoint (Distance from character to point, can be used for finding the closest thing to the character at any distance): private int distanceToPoint(int pointX,int pointY) { return (int) Math.sqrt(Math.pow(this.client.getMyPlayer().getX() - pointX, 2) + Math.pow(this.client.getMyPlayer().getY() - pointY, 2)); } Get XP for Level: public int getXPForLevel(int level) { int points = 0; int output = 0; for (int lvl = 1; lvl <= level; lvl++) { points += Math.floor((double)lvl + 300.0 * Math.pow(2.0, (double)lvl / 7.0)); if (lvl >= level) return output; output = (int)Math.floor(points / 4); } return 0; } Get Level for XP: public int getLevelForXP(int exp) { int points = 0; int output = 0; if (exp > 13034430) return 99; for (int lvl = 1; lvl <= 99; lvl++) { points += Math.floor((double) lvl + 300.0 * Math.pow(2.0, (double) lvl / 7.0)); output = (int) Math.floor(points / 4); if (output >= exp) { return lvl; } } return 0; }
  24. I did at the start :-)

Account

Navigation

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.