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.

Apaec

Scripter III
  • Joined

  • Last visited

Everything posted by Apaec

  1. Are you standing in an area that might not have coverage (e.g the new inferno?)
  2. Hey - unfortunately as i'm sure you can understand I can only give out one trial of each script to each person - it seems you have already had a trial last month. Sorry about that! -Apa
  3. Perhaps, although that would mean adding all other items such as pizza making, pineapple slicing, wine making etc which I think would all be worthy of their own script if anything with a higher price! Cheers Apa
  4. Apaec replied to Apaec's topic in Combat & Slayer
    Hey (: Unfortunately I can only assign one trial per user as you can understand, and it seems you had one which expired back in February. Since that was quite some time ago, i've gone ahead and given you a 6h trial but I don't think I can give you any more hours beyond that! Thanks, Apa
  5. Done! Unfortunately this script does not combine items etc, it only cooks items on ranges/ovens etc. So you can use the script to cook your potatoes and tuna etc, but not to combine them. Sorry about that! ): -Apa
  6. Update! Version 3.05 Added support for the new sulphur vent introduced in yesterdays update, located above Please note that, since the script relies on the OSBot Web for walking, this location should be used with caution until Mor Ul Rek is added! Enjoy! -Apa
  7. Apaec replied to Apaec's topic in Combat & Slayer
    Hey, Apologies for being late with the trial... Only just saw your request now! As for the best spot, it depends on how quickly you kill the sand crabs. In an ideal world, you would have it so that there's always a sand crab spawned which you can attack - If you're using a 3-spawn point and you find there is time when your player is idle, then consider moving on to a 4-spot. I would deffo recommend camp over roam though! Cheers -Apa
  8. Apaec replied to Apaec's topic in Minigames
    You buy the runes from the store (The most profitable at the moment are deaths, cosmics and natures), which after completing the Sudoku are heavily discounted from standard store prices. As a result, they are also a lot cheaper than GE prices so that's where the profit comes in. To make profit though, you first need money to initially buy the runes! Hope that helps, let me know if you're still unsure! -Apa
  9. You can pay with OSRS GP however not directly! You will need to buy a voucher from someone selling them here: https://osbot.org/forum/forum/227-vouchers/ .. which you can then redeem for in-store credit. Cheers! (: -Apa
  10. map#canReach
  11. UPDATE! Version 1.22 Adjusted interfaces such that they are searched for text rather than using IDs Added support for forging Mithril grapples Added support for forging Iron spits Adjusted some structural things Removed blue text from GUI as it looked bad on the new white background Removed annoying spinning cursor Should hopefully be live shortly. Enjoy! (: -Apa
  12. Apaec replied to Apaec's topic in Combat & Slayer
    I've given you an additional 6 hours, hopefully this should be enough!! (: Cheers -Apa Hey, Crab Claw Isle is already supported! Just select a CCI spot from the GUI settings. (: -Apa
  13. The free version only supports Rogues Den! (Hence APA Den Cooker !) If you're interested in a trial for the full version, let me know! Cheers -Apa
  14. Stop your computer going to sleep :p
  15. Hey, Could you perhaps give a bit more context about the situation? Just saying 'it won't run' doesn't narrow down the situation all that much! Perhaps you could provide a screenshot or something along those lines? Also make sure it's being run as a java app, i.e: -Apa
  16. Apaec replied to Apaec's topic in Combat & Slayer
    This is odd. Since mirror is out of my control, there's most likely not much that I can do, however could you have a glance at this sub-forum: https://osbot.org/forum/forum/316-bug-reports/ and see if anyone else is also experiencing the same issue as you with mirror mode? You may well also find a solution there! I've not used mirror mode a whole lot myself, I tend to stick to injection, however hopefully that's been of atleast a little help... Cheers! -Apa
  17. Apaec replied to Apaec's topic in Minigames
    Not sure really. I'd probably go with moderate use since that's what i've done and gotten away with. I've solved many many sudokus yet never exceeded about 2-3h of bot running time in one go and i've profited about 10M with my account still intact!
  18. Apaec replied to phony's topic in Scripting Help
    There is one available in the options menu if you want one!
  19. Apaec replied to Apaec's topic in Minigames
    Script is currently working perfectly in Stealth injection, but... PLEASE NOTE: This script is currently NOT compatible with Mirror Mode! (More info here) Essentially there is an issue with the mirror mode debug text overlapping with the Sudoku grid, causing the tile colour reading to fail. Hopefully the issue will be resolved soon, however there are no guarantees as this kind of stuff is out of my control. I will keep you guys updated as to the mirror mode status, but for now keep on running the script in Stealth injection mode and enjoy the profit! (: -Apa
  20. Hey Not really sure what to do in this situation, essentially my recently written Rune Sudoku script relies very heavily on colour data and unfortunately the mirror mode text covers the upper left part of the Sudoku grid. This wouldn't be a problem if the colour picker didn't read the text, however it does so it means the script is unusable in mirror! Running the following script: import java.awt.Color; import java.awt.Graphics2D; import java.awt.Rectangle; import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Apaec", info = "", name = "Mirror text overlay test", version = 1.00, logo = "") public class Main extends Script { private Rectangle MIRROR_TEXT = new Rectangle(10, 20, 250, 75); // Determines the number of pixels in a given rectangle which have a specified colour private int countPixelsOfColourInRect(Rectangle rect, Color col) { int amount = 0; for (int x = (int) Math.round(rect.getX()); x < rect.getX() + rect.getWidth(); x++) for (int y = (int) Math.round(rect.getY()); y < rect.getY() + rect.getHeight(); y++) if (getColorPicker().colorAt(x, y).equals(col)) amount++; return amount; } @Override public int onLoop() throws InterruptedException { return 1000; } @Override public void onPaint(Graphics2D g) { g.setColor(Color.CYAN); g.draw(MIRROR_TEXT); g.drawString("" + countPixelsOfColourInRect(MIRROR_TEXT, new Color(0, 255, 0)), 20, 110); } } Gives this: As you can see, within the drawn rectangle, 1974 pixels were discovered with the exact RGB colour of (0,255,0), corresponding to the debug text Would it be possible to either remove, or adjust the layering of this text such that it is not picked up by the colour picker, just like a normal paint wouldn't be? Cheers! Apa
  21. Sure, and no, it does not have cannon support! Sorry about that. Cheers -Apa
  22. Apaec replied to Apaec's topic in Combat & Slayer
    That's odd - are you logged into the game? And does it log anything in the console?
  23. Apaec replied to Apaec's topic in VIP Scripts
    No idea why it would double click unless it's some strange mirror mode caveat. It works perfectly in normal mode for me at the moment. There's no reason it would click an already mined rock simply because it wouldn't know how - the bot only scrapes the unmined data of the rocks you're using and it has no way of identifying depleted rocks.
  24. Apaec replied to Apaec's topic in Combat & Slayer
    It should do - if you're interested I can give you a 24h trial and you can give it a shot in mirror mode?
  25. Apaec replied to Apaec's topic in Combat & Slayer
    Hey (: Cheers for the kind words, I've given you a 24h trial, hopefully it lives up to your expectations! -Apa

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.