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.

FearMe

Members
  • Joined

  • Last visited

Everything posted by FearMe

  1. FearMe replied to Eliot's topic in Archive
    cooking or fletching
  2. You can especially get aids through anal...
  3. I can lend you my account if you give me the source so I can make my own fletching script better and keep it free h3h3h3h3
  4. DID I GET IT
  5. But then you can just check if its at (-1, -1) and don't render it when it is, so you don't get the image on the top left :P
  6. Hey, could you make a thread layout for my fletching script? http://osbot.org/forum/topic/35965-fearfletcher-currently-the-only-free-fletcher-out-there/
  7. int mX = client.getMousePosition().x; int mY = client.getMousePosition().y; Do both those not just return -1 if the mouse is outside the screen?
  8. sAIO Fletcher gave me a really good idea how to make a fletching script, you can look at my fletcher script source code too, it works great as far as I'm aware.
  9. Totally forgot that some items have a " ' " in the name, plus sign works fine though.
  10. This is more for stuff like calculating money gained per hour, nothing big. If i recall correctly there's a full-fletched library on like the 2nd or 3rd page of this subforum.
  11. Have fun. /** * @author FearMe * @param name the exact item name * @return the price(not 100% accurate) * @throws IOException */ private int getPrice(String name) throws IOException { if (name.length() <= 3) return 0; URL url = new URL("http://forums.zybez.net/runescape-2007-prices/api/item/" + name.replace("+", "%2B").replace(' ', '+').replace("'", "%27")); URLConnection con = url.openConnection(); con.addRequestProperty("User-Agent", "Mozilla/5.0"); BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream())); String line = ""; String inputLine; while ((inputLine = in.readLine()) != null) line += inputLine; in.close(); if (!line.contains("average\":\"")) return 0; line = line.substring(line.indexOf("average\":\"") + "average\":\"".length()); line = line.substring(0, line.indexOf("\"")); return (int) Math.round(Double.parseDouble(line)); }
  12. JRE is mandatory for any java application, this would mean no one could play.
  13. I know how to do it, just didn't bother putting it in :P
  14. Please note that Java is not my main programming language so excuse me if I did anything inefficiently or wrong. Just chuck this class in your script class, call it on #onStart() like this; private XPCheck x; public void onStart() { x = new XPCheck(Skill.MAGIC, Skill.SMITHING); x.start(300); } Also, make sure to call XPCheck.cancel() in your #onExit(), or it will keep checking, even when you end the script manually.
  15. What I did was check for the closest NPC by name, and if the rock you're currently mined changed to an NPC(it changes to an NPC when it's smoking, at least it's like this way with Ents), switch to another rock(can use closestObject... because it doesn't return the smoking rock/ent).
  16. Don´t play garen, he's worthless.

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.