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.

Leaderboard

Popular Content

Showing content with the highest reputation on 01/26/16 in all areas

  1. #1 SOLD MAGIC SCRIPT #1 MOST FEATURES MAGIC SCRIPT ESC MODE, HOVER-CLICK, NEAREST ITEM CLICK, FLAWLESS JMod nearby and we still alive. Anti-ban and Optimal script usage Anti-ban: - Don't go botting more than 3 hours at once, take breaks! Otherwise the ban-rate is highly increased! - Bans also depend on where you bot, for the best results: bot in unpopular locations Banking-related spells are the lowest ban-rate (spells which require banking or can be casted near a bank, e.g. superheating, maybe alching, jewelry enchanting etc etc) since you can just go to a full world and blend in with other non-bots (humans), for example: world 2 grand exchange If casting spells on npcs, then unpopular locations reduce the banrate by alot, So make sure not to go to botting hotspots otherwise you may be included in ban waves. - Some good areas used to be (until some got popular): grizzly bear, yanille stun-alching, any overground tiles (upstairs etc) but once the areas are overpopulated, try to go to another location which is similar to the aforementioned locations. This is a very popular thread with many many users so if a new location is mentioned, the location will be populated very quickly so I can only suggest examples of good locations - Don't go botting straight after a game update, it can be a very easy way to get banned. Wait a few hours! If you ever get banned, just backtrack your mistakes and avoid them in the future: you cannot be banned without making botting mistakes. Keep in mind you can be delay-banned from using previous scripts, so don't go using free/crap scripts for 24 hours then switching to a premium script, because the free/crap previous script can still get you banned! For more anti-ban information, see this thread which was created by an official developer: http://osbot.org/forum/topic/45618-preventing-rs-botting-bans/
  2. 4 points
    Introducing Woodcutter Free 2 Play GUI Powerleveler/Moneymaker/Fletcher/Bruner using multiple locations to gather resources. The goal of this bot is not to achieve the highest xp per hour ratio, but to create high leveled woodcutting accounts without any maintenance in f2p. Notable Features Would go 1-99 woodcutting unless you stop it Can either bank, drop, fletch, or burn logs changed at any time in GUI Can send forcemessage to world & clan via GUI Simple GUI to setup bot Multiple locations for all trees Changes automatically to higher level trees at an optimal level Walks to bank when the bot can use a better axe Banks in both Draynor and Lumbridge Detects random events and dismisses them All timers as random as virtually possible No set walking path, moves with webwalk Uses a random mouse movement pattern Automatically resets the bot if its stuck Automated world hopping if too crowded SF AntiBan GUI Proggies
  3. I would suggest AssAgility next time. It will get you banned in half the time
  4. 👑CzarScripts #1 Bots 👑 👑 LATEST BOTS 👑 If you want a trial - just post below with the script name, you can choose multiple too. 👑 Requirements 👑 Hit 'like' 👍 on this thread
  5. Ever wanted a free trial for one of these scripts? Well, now you can request one The free trial request template/prerequisites are located at the bottom ----------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) --------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) ----------------------------------------------------------------------------------------------------------------------------- (CLICK IMAGE TO VIEW SCRIPT THREAD) ----------------------------------------------------------------------------------------------------------------------------- HOW TO REQUEST A FREE TRIAL Step 1) Like this post Step 2) Place this image in your signature Step 3) Fill out and post the script trial request template on this thread SCRIPT TRIAL REQUEST TEMPLATE : Script name: OG's Green Dragon Killer/ OG's TzHaar Fighter / OG's Blue Dragon Killer Trial Duration in Hours: (Enter requested number of hours for your trial) Have you liked the topic post?: (Must answer yes to receive trial, links can be found above) Is my post count higher than 20?: (Must answer yes to receive trial)
  6. 3 points
    I like orange juice with no bits, doubling your gp I swear its legits, Anne is a female specie with tits, Im a good adc call me b1g kr1tz. Spit some hot bars about the person above you, GO!
  7. Don't know if anyone will use but I needed something with this functionality and came up with this. Any feedback is appreciated, I'm always trying to learn new things. GroundMonitor.java: import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.List; import org.osbot.rs07.api.model.GroundItem; import org.osbot.rs07.script.Script; public abstract class GroundMonitor { //My implementation filters out items less than price x, but I removed because it was specific to my needs private ArrayList<GroundItem> cache = new ArrayList<GroundItem>(); private Script ctx; public GroundMonitorRelease(Script ctx, int valueThreshold) { updateContext(ctx); update(); } public void updateContext(Script ctx) { this.ctx = ctx; } public abstract void onChange(); public boolean hasChanged() { return getChanges().length > 0; } public void update() { for (GroundItem item : ctx.getGroundItems().getAll()) { if (item != null) { cache.add(item); } } } public GroundItem[] getChanges() { List<GroundItem> items = new ArrayList<GroundItem>(); ArrayList<GroundItem> ci = new ArrayList<GroundItem>(); int changes = 0; for(GroundItem q : ctx.getGroundItems().getAll()){ if(q != null){ items.add(q); } } for (GroundItem item : items) { if (item != null) { int id = item.getId(); if (!contains(ci, id) && !cached(item)) { ci.add(item); changes++; } } } Collections.sort(ci, new Comparator<GroundItem>(){ @Override public int compare(GroundItem o1, GroundItem o2) { int d0 = CheckPrice.get(o1.getId()); //Use distance instead of price int d1 = CheckPrice.get(o2.getId()); //Use distance instead of price return (d0 < d1 ? -1 : //It will return the closer one first (d0 == d1 ? 0 : 1)); } }); return Arrays.copyOf(ci.toArray(new GroundItem[ci.size()]), changes); } private boolean cached(GroundItem item){ return cache.contains(item); } private boolean contains(ArrayList<GroundItem> list, int id) { for (GroundItem i : list) { if (i == null) continue; if (i.getId() == id) { return true; } } return false; } } Main.java (onStart): groundMonitor = new GroundMonitor(getScript()) { @Override public void onChange() { for (GroundItem i : getChanges()) { if(i != null){ log(i.getName() + " : " + CheckPrice.get(i.getId())); } } } }; Main.java (onPaint): if (groundMonitor != null && groundMonitor.hasChanged()) { groundMonitor.onChange(); groundMonitor.update(); }
  8. 2 points
    Molly's Thiever This script is designed to quickly and efficiently level your thieving! Check out the features below. Buy HERE Features: - Capable of 200k+ per hour and 30k+ exp/ph on mid-level thieving accounts. - Quickly reaches 38 thieving to get started on those master farmers for ranarr and snap seeds! - Fixes itself if stuck. - Hopping from bot-worlds. - Stun handling so the bot doesn't just continually spam click the npc. - Drops bad seeds if inventory is full at master farmers. - Eats any food at the hp of your choosing. Supports: -Lumbridge men -Varrock tea -Ardougne cake -Ardougne silk -Ardougne fur -Kourend Fruit Stalls -Ardougne/Draynor master farmer -Ardougne/Varrock/Falador guards -Ardougne knight -Ardougne paladin -Ardougne hero -Blackjacking bandits as well as Menaphite thugs, this has limitations, click the spoiler below to see them Setup: Select your option from the drop down menu, it will tell you the location where the target is located. Fill out the gui and hit start. Simple setup! Proggies: Proggy from an acc started at 38 theiving:
  9. Shudsy's ToadCollector Collects Swamp Toads at Tree Gnome Stronghold swamp and banks them. Information Perfect money making method for low level accounts/Pures. No skills or combat levels required. Requirements Members Setup Start anywhere in Gnome Stronghold Features Picks Swamp toads for money. Proggies Download Check the SDN. Changelog Please report any errors you find.
  10. RQ Chopper | Woodcutting as it should be By RandQm Features: All trees to be made available Many locations, also less popular ones! Auto-check bank for better axe Start anywhere, anytime, the bot will prepare (Go to area, bank, take axe, ...) on it's own! Anti-ban implementations Powerchopping & taking bird nest options! Anti-fail systems built in Advanced information display Easy & clear GUI SMART TREE DETECTION when all trees are down, walk to the one which will respawn first AUTO-SWITCH TO BETTER TREES When this option is toggled on, the bot will keep track of leveling up. Once it reaches the required level for a better tree (required level + 5 for tree's over willow) it will head to those trees and start training there without you having to do anything! When using powermode, it will not go to better trees anymore once it reached willow as willows are the fastest experience. CUSTOM LOCATION SUPPORT Cut anywhere you want not bounded by locations! In the GUI, choose the type of tree you want to cut and choose "custom" as location. Stand in the center of the area you want to cut in when starting the script. The bot will scan the area in a 15x15 radius for the type of tree you specified. It will save those trees and start choppin! When not using powerchopping mode it will find the closest bank to use. Download: Current version: 2.0 Click here to download! Soon to be on the SDN For now, place the downloaded jar in: c:\Users\YOUR_USER\OSBot\Scripts\ Configurations: Proggies:
  11. [Currently not doing services, vacation] Hello notty boys , I have decided to open a simple GFX shop in which I will be taking payments in RSGP (eventually I'll probably have paypal and such). I have decided to start this because I love working in photoshop and wanted to make use of it. What services will I offer? GUI Paint for your scripts Script Icons Avatars Signatures Misc. (discussed) Note #1 : We will discuss the price. Note #2 : The kind of signatures I do (until I practice out other styles) will be the only one I do atm. (you can see in my portfolio) Note #3 : I do not do web templates/thread layouts(atm). Note #4 : I will do the service you desire until it fulfills your wishes. Note #5 : You will pay half the price agreed upfront unless I find you trustworthy. Note #6 : Once I take your order it will be completed as soon as I am able to. If you would like any of these either post in here or contact me via pm: . If you have the will to I would like you to fill my service request (optional) What kind of service you desire?(listed above): Any special wishes?: My portfolio can be found here -> momyzd.deviantart.com or some of it can be found here http://osbot.org/forum/topic/91392-jakovsmomy-gfx-gallery/ Every further work will be posted here. I will start working later today , feel free to hit me with your first requests. Signature #1 , Sinatra For Sinatra Animos avatar
  12. 2 points
    he calls himself ass nerd i think hes just a class turd my rhymes are spat like fire don't vs against me if you got no desire im the ill psycho brown man who got the bitches while you sit back and shit talk with all ur snitches don't start what you can't finish or i'ma tear you apart and leave ya squeamish
  13. 2 points
    Also of acct status plz
  14. 2 points
    So your account was "already logged in" so you make a thread, your connection probably just sucks or you screwed something up. Don't blame other people so quickly, no one hacked you...
  15. One thing i have noticed if you are using death walk is that it get stuck at draynor manor's trees.
  16. by Czar Buy now (only $8.99!) 143 HOURS IN ONE GO!!!!! update: this bot is now featured on the front page of osbot! More reviews than every other fishing bot combined! 100 hour progress report!!! How to use Script Queue: ID is 552, and the parameters will be the profile name that you saved in setup! This process is really simple, just to save you headache
  17. 1 point
    View in store ($3,99 for lifetime access) Features: Supports every location you would ever want to cook (anywhere missing? request it!) Supports almost every food item cookable on a range or fire (anything missing? request it!) Smart Target-oriented back-end stops the script when you have accomplished your desired goal Option to move mouse outside screen while cooking to simulate human AFKing Where Make-All isn't available, A Gaussian distribution based suffixed string generation algorithm randomises entered Make-X values Utilises a combination of WebWalking and recorded paths to ensure the script never strays from it's job Simple, intuitive GUI which auto-detects your food and location based on your inventory and minimap position Stable cooking & banking algorithms, tuned individually for each food item and bank Clean, informative, Anti-aliased, un-obstructive and fully movable self-generating paint Movable on-canvas scrolling console logger Efficient script logic ensures an EXP-optimised experience Normally distributed response times to simulate a human's reflexes Stops & logs out when out of food, saving your progress to the console and web Dynamic signatures allow you to track your progress as you use the script Handles obstacles and doors between the bank and the range to ensure door spammers cannot hinder your gains CLI is supported for all hardcore chef needs ... and many more ... Supported food: This script only supports cooking these food items on ranges/fires, it will not combine ingredients to make items such as Tuna potatoes or Pineapple pizzas. Shrimp Anchovies Sardine Herring Mackerel Chicken Beef Bear meat Rabbit Rat meat Sinew from Bear meat Sinew from Beef Trout Salmon Cod Pike Bass Rainbow fish Tuna Lobster Swordfish Monkfish Shark Dark crab Sea turtle Manta ray Anglerfish Karambwan Poison Karambwan Bowl of Water Uncooked pizza Potato Seaweed Sweetcorn Stew (new!) Curry (new!) Just ask for a new food item to be added! Supported locations: Rogues den Lumbridge Kitchen (new!) Catherby Nardah Tzhaar City Al-Kharid Zanaris Neitiznot Varrock East Hosidius Kitchen Gnome Stronghold Varrock Cooks' Guild Port Khazard Edgeville Mor Ul Rek Myths' Guild (new!) Just ask for a new location to be added! Why choose APA Scripts? As an experienced veteran scripter here on OSBot, I strive to give you the best user experience that I can by providing frequent updates and fixes. With over 40 cumulative 5 star reviews on the store, as well as my Scripter III rank, you know you're in safe hands. Want something added? Don't like something? Have an awesome proggie to share? Let me know! Example GUI: Starting from CLI: Gallery: _________________________________________________________________________________________ Credits:
  18. 1 point
    Before buying, please ensure you check-out with the correct script. Swapping scripts is not possible. View in store $4,99 for lifetime use - Link to Sand Crabs script thread (better exp/h!) - Requirements: Camelot tabs / runes in main tab of bank Designated food in main tab of bank ~ 20-30+ combat level Features: CLI Support! (new!) Supports Ranged & Melee Attractive & fully customisable GUI Attractive & Informative paint Supports any food Custom cursor On-screen paint path and position debugging Supports [Str/Super Str/Combat/Super combat/Ranged/Attack/Super attack] Potions Collects ammo if using ranged Stops when out of [ammo/food/potions] or if something goes wrong Supports tabs / runes for banking Option to hop if bot detects cannon Global cannon detection Option to hop if there are more than X players Refreshes rock crab area when required Avoids market guards / hobgoblins (optional) Automatically loots caskets / clues / uncut diamonds Enables auto retaliate if you forgot to turn it on No slack time between combat Flawless path walking Advanced AntiBan (now built into client) Special attack support Screenshot button in paint GUI auto-save feature Dynamic signatures ...and more! How to start from CLI: You need a save file! Make sure you have previously run the script and saved a configuration through the startup interface (gui). Run with false parameters eg "abc" just so the script knows you don't want the gui loaded up and want to work with the save file! Example: java -jar "osbot 2.4.67.jar" -login apaec:password -bot username@[member=RuneScape].com:password:1234 -debug 5005 -script 421:abc Example GUI: Gallery: FAQ: Check out your own progress: http://ramyun.co.uk/rockcrab/YOUR_NAME_HERE.png Credits: @Dex for the amazing animated logo @Bobrocket for php & mysql enlightenment @Botre for inspiration @Baller for older gfx designs @liverare for the automated authing system
  19. 1 point
    Molly's Orber This script is designed to make earth orbs and air orbs for over 350k gp/ph with the added benefit of getting over 30k mage exp per hour! Buy HERE Requirements: - 66 mage for air orbs, 60 for earth orbs. - 40+ hp recommended(especially at low def) Features: - Supports using mounted glory in house(requires house teleport tablets) - Supports eating any food at bank, when under a set hp - Hopping out of bot worlds - Recovers from deaths(respawn point must be lumbridge) - Emergency teleporting when under a set hp - Stamina potion usage, the bot will use one dose prior to each run - World hopping in response to being pked to prevent pkers from farming. -Ability to bring one food with you in case you drop below the emergency teleport hp, script will still tele if you drop below it and have already eaten your food. -Enabling run when near black demons to prevent some damage. -Re-equipping armor in inventory on death. Setup: Start at Edge bank, have all supplies next to each other in your bank, preferably in the front tab at the top. You must have the item "Staff of air" for air orbs or "Staff of earth" for earth orbs. Have a fair amount of cosmic runes and unpowered orbs, glories, as well as some food to eat as the bot walks past black demons and will take some damage. FOR EARTH ORBS YOU MUST HAVE ANTIDOTE++. If you are using house mounted glory option set render doors open to "On" under your house options in Runescape. CLI setup: Proggies:
  20. Bought an 07 Account. 1 Day after it got locked. I thought it was reoovered by the seller, but the password was never changed. The email I set was removed, and I couldn't recover that way. The Seller had no luck to recover, and I were about to give up, get refunded by the seller (altho there were 70M+ on the account that would've been lost, so a shit situation for both of us.) He have me the info he had, as a last try for me to file in a recovery. It took about 8 hours and I was waiting in pain, but I was 98% sure it wouldn't go thu, as I was not the creator and had only been on the acc for like 28 hours. The recovery appeal got accepted. WTF, I've done it again. BULLSHIT.
  21. 67 cooking is the only requirement
  22. 1 point
    Hype dude, looks amazing
  23. inb4 'toad collector and toad leg maker'
  24. I have completed this service for him.
  25. full inbox? or they do? idk if it will do that if they do but possible if you do
  26. Looks good, you might want to consider using a proper thread instead of the paint thread though. As far as I know the paint thread is executed like 60 times a second, so that's literally every ~16 ms which is not really necessary. If you want to go with the optimisations to the maximum then you can detect the changes every tick instead since we have the possibilities to do so with the current API which would be about 40 times more efficient CPU wise.
  27. can i have trail plz
  28. Heya, I've made a Zeah AnglerFishing script but i'm not able to test it due not having the stats myself. If you meet the requirements needed tot fish, please send me a message or reply on here. You'll get the script for free once its out.
  29. Done , hope you like it as you didn't specify how you wanted it
  30. Don't worry man, I completely understand.
  31. Was thinking to buy script, anyone got banned so far ?
  32. i would really like to try the trail the script just looks amazing
  33. I can do this for ya my skype: rutgerdr@hotmail.nl
  34. I'll take a look if I can check the content inside the rune pouch, pretty sure I can't check that, it will be a pain to make. rest should be fairly easy to implement.
  35. kawasaki and ktm > all
  36. Is there a reason why you want the emails made/registered? You can still use the accounts if the e-mail used is completely non-existent. (saves a lot of time instead of hassling with emails)
  37. Beautiful Bike! I ride a Yamaha YZ
  38. May I have a trial please
  39. Can I try a 24 hour trial please?!
  40. 1 point
    @Override public void onStart () { getBlueDragon.kill(); } Finished it for you
  41. this guy got me a nice logo script coming soon btw
  42. i like this, i try to keep my bank clean, forrealz i really do, but it don't work out

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.