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.

Apaec

Scripter III
  • Joined

  • Last visited

Everything posted by Apaec

  1. Apaec replied to Apaec's topic in Combat & Slayer
    Working fine for me. Only explanation is you're trying to run the bot in resizeable?
  2. Done. Enjoy! Apa
  3. sounds like the distances are too far apart. A sure way to fix this is to record every tile between you and your destination. I can send you a path-recording script if u want, it would speed up the process! apa
  4. http://www.mollerhoj.com/
  5. Apaec replied to Apaec's topic in Combat & Slayer
    Aparently bot is down after todays update. Should be back up by now tho. Be sure to try again !: ) apa
  6. Apaec replied to Scotty's topic in Runescape
    is it still active? if so... how? apa
  7. Apaec replied to Apaec's topic in Combat & Slayer
    Looks like the bot is still down or they maybe made some mistake. Apaec
  8. Done. Enjoy! apa
  9. Apaec replied to Apaec's topic in Combat & Slayer
    Hey guys, Sounds like the bot went down yesterday. Not sure if it's been fixed yet or not. Should have been! Apa
  10. Account creators are hard to make, mostly because jagex blocks your account after you make more than (12?) accounts on 1 ip. Also, after x amount of attempts, a captcha is introduced into the creation process. Captchas are very hard to get round without very advanced ocr. It is possible to get around them but it is much more efficient for a human to register. Apa
  11. Apaec replied to Apaec's topic in Combat & Slayer
    NOTE TO ALL USERS: OSBOT DOES NOT SUPPORT RESIZEABLE MODE AT THE MOMENT. PLEASE RUN THE BOT USING THE FIXED MODE SETTING AS SEEN BELOW:
  12. Apaec replied to Apaec's topic in Combat & Slayer
    Hey Easy fix: switch your game to fixed mode. The client does NOT currently support resizeable mode. Apa
  13. Sorry mate, last time you asked I specified I couldn't give you any more trials. I've already gone overboard with the number i've given you. Unfortunately if you wish to use the script any more you'll need to purchase it. Apaec
  14. Done! Sorry for the delay. Enjoy! Apaec
  15. Please can you PM me the name? Thanks Apa
  16. Haven't released one yet. Might write a tut for gui over the summer, we'll see. Hey Sorry i'm late to reply. Seems i was unfollowed from the thread for some reason. Make sure you save it in this directory: If it's still not showing up and you've got it in that directory, refresh the scripts list. If it's still not showing up, restart osbot. If it's still not showing up, you've got something wrong in your script manifest! Apaec
  17. it's the least that can be offered to him for his service i spose
  18. Apaec replied to Botre's topic in Spam/Off Topic
    goml
  19. I've enabled the script on your account. Enjoy! Apa
  20. well... part of my thinks 'why not' but then i saw beyond two mens love for eachother. There would be other repercussions especially when it comes to children. It would cause all sorts of legal issues, and so on. Also, for people saying being gay isn't a mental illness, well, it is. Although I wouldn't categorise it as an illness moreover a 'mental difference' between people. Being gay isn't necessarily bad, it's just not... normal. The point of love / attraction between males and females is to bring a man and woman together so that they can reproduce and the human race can continue. If gay people were designed then obviously reproduction wouldn't be possible and therefore the race would die out. Therefore, in that respect, it's a mental setback. But with so many people on the planet, at the moment I believe gayness is harmless. So I voted yes, but I really do understand why people voted no. Infact I was on the verge of voting no myself [/speech]
  21. Apaec replied to Avortex's topic in Archive
    No, it was just an example of fetching a directory. Also, @ op, yes, you need to copy and paste those. I'm not going to tell you exactly how to do it, it is paramount you learn yourself. But i've shown you how to grab and write elements to a file. Also, you can see that i've done it without arrays. This is probably the best way of doing it if you have 2-3 lines but after that it may become somewhat strenuous. So you'll need to implement arrays if you have more than 6 lines, just to make it tidier. apa
  22. Apaec replied to Avortex's topic in Archive
    Nice and straightforward, perfect way to practice file interaction Here's a method which botre sent me a while back, should do the trick for loading the data. (modified the onLoadData() method to show you how to load ints, Strings and booleans). public void loadData() { FileReader fileReader = null; try { fileReader = new FileReader(OSBDirectory.GUI_DIRECTORY + OSBDirectory.separator + "test.txt"); //example directory } catch (FileNotFoundException e) { return; } BufferedReader bufferedReader = new BufferedReader(fileReader); onLoadSettings(bufferedReader); try { bufferedReader.close(); } catch (IOException e) { e.printStackTrace(); } } public void onLoadData(BufferedReader bufferedReader) { try { boolean b = Boolean.parseBoolean(bufferedReader.readLine()); //reads first line and saves into local var b as a boolean. } catch (NumberFormatException | IOException e) { e.printStackTrace(); } try { int i = Integer.parseInt(bufferedReader.readLine()); //reads second line and saves into local var i as an int. } catch (IOException e) { e.printStackTrace(); } catch (NumberFormatException e) { e.printStackTrace(); } try { String s = (bufferedReader.readLine()); //reads the 3rd line outputting the line into local variable s as a String. } catch (IOException e) { e.printStackTrace(); } } As for saving the settings: public void saveSettings() { PrintWriter writer = null; try { writer = new PrintWriter(OSBDirectory.GUI_DIRECTORY + OSBDirectory.separator + "test.txt", "UTF-8"); //example directory, look at docs for exact implementation of PrintWriter() } catch (FileNotFoundException e) { e.printStackTrace(); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } onSaveSettings(writer); writer.flush(); writer.close(); } public void onSaveSettings(PrintWriter writer) { writer.println(boolean b); writer.println(int i); writer.println(String s); } ** Saves the format into a file in the given directory under the name test.txt in the form: b i s dont forget the file needs creating. ** You should hopefully find it really straight forward after I ggave you that as a starting point hehe Apa
  23. Apaec replied to Apaec's topic in Combat & Slayer
    Perhaps you started the script too quickly after stopping another one. Always wait for 1 script to stop (when it says script has terminated in console) before starting another one. Restarting the client / bot tab may be the only fix if this happens again (from what i've figured out so far) apa
  24. If you want you can add my skype and I can help you I've got about 2k killcount over a range of accounts so i'd be willing to give you a hand i'll be online tomorrow, pm me apa

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.