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.

Bobrocket

Members
  • Joined

  • Last visited

Everything posted by Bobrocket

  1. Depending on how trusted you are, you'll go first. Skype: Bobrocket_01 Tell me your price in USD and we'll get something sorted.
  2. public static boolean iBusy() throws InterruptedException { for (int i = 0; i < 4; i++) { if (myPlayer().isAnimating()) return true; sleep(420); } return false; } Gotta work on writing less code for the same objective fam
  3. Pass a Script instance to your class like so: public class myCoolClass { private Script script; public myCoolClass(Script src) { script = src; } public void myCoolMethod() { Item[] items = script.getInventory().getItems(); } }
  4. Paid scripts are paid because the scripter wants to monetise it basically. Can be for any reason. Paid scripts can be safer since less people use them, but not always.
  5. RIP

    Bobrocket replied to Krys's topic in Spam/Off Topic
    http://vocaroo.com/i/s0jcMgRxbOAA
  6. Similar to how a botnet communicates with each individual bot. The bot will go to a specified URL with its own unique key, and check for commands. Will then execute commands (only REMOVE/ADD/SCREENSHOT for the most part). Eric said that it was perfectly allowed so long as it was fully secured and cannot be abused. I will gladly give him the full source so he can rest assured knowing that everything is safe.
  7. I think you should settle for 30fps on 900p b-b-but muh eyes cant see the difference
  8. ay fam i'll hit you up with a proper logo in pm give me like 2 calendar years ye
  9. The oil will cost you like $500 if you want the premium shit bro
  10. !!NOTE FOR 64 BIT OPERATING SYSTEMS!! Do not just delete system32, also delete SYSWOW64!
  11. Think this will be the same with speeding up verification?
  12. You missed the opportunity of Woody's Wood... why If you do go with Woody's Wood (I did media studies, trust me you'll get more downloads), you can use this logo:
  13. Skrill seems to just be really fucking slow in general. Sent my documents in like a week ago to get verified, no response
  14. In the high 50s, no other stats. No registered email etc etc, email login, no bans, and no membership. Just curious to see what it would be worth :p
  15. Art is interpretive, you just don't understand
  16. If you want to test my blackjacking, feel free to message me and we can sort something out
  17. High quality PSD available on demand.
  18. No problem! Should hopefully be out before the 7th of September.
  19. This is the snippets section, and while I respect your work, you should try and post snippets that people can expand on at their own leisure Having all of your code makes a good example, although then it's more of a tutorial than a snippet
  20. Just saying, people aren't going to have the same GUI options so you want to have an easier way to read/write: import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; public class Save { private PrintWriter pw; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Save(String localName) { try { pw = new PrintWriter(localDir + localName); } catch (FileNotFoundException e) { e.printStackTrace(); } } public boolean writeString(String s) { pw.println(s); return true; } public boolean writeObject(Object o) { pw.println(String.valueOf(o)); return true; } public boolean writeBoolean(boolean b) { return writeObject(b); } public boolean writeInt(int i) { return writeObject(i); } } import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.nio.charset.Charset; public class Load { private BufferedReader br; private InputStream fis; private InputStreamReader isr; private boolean finished = false; String localDir = System.getProperty("user.home") + File.separator + "OSBot" + File.separator + "data" + File.separator; public Load(String localName) { try { fis = new FileInputStream(localDir + localName); isr = new InputStreamReader(fis, Charset.forName("UTF-8")); br = new BufferedReader(isr); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public String readString() throws IOException { String line = null; if (!finished) { line = br.readLine(); if (line == null) finished = true; } else { if (br != null) { br.close(); fis.close(); isr.close(); br = null; } } return line; } public boolean readBoolean() throws IOException { return Boolean.valueOf(readString()); } public int readInt() throws IOException { return Integer.valueOf(readString()); } } Then you can just do: Save s = new Save("settings.ini"); s.writeString("Checkbox 1"); // Load l = new Load("settings.ini"); String checkbox = l.readString(); //Checkbox 1
  21. Yeah, mine ;) Just looking to see what I can do about this OP, currently grabbing areas for the houses, npcs etc and their options (and obviously what to do). Should be out fairly soon.
  22. Looks like your installation of java is corrupt. Go into Control panel -> programs, and uninstall it. Then reinstall it, and make sure it says you have successfully installed java

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.